Skip to main content
added 239 characters in body
Source Link
Gotoro
  • 149
  • 7

Python 3, 6666 56 bytes

importfrom random as rimport*
x=1
while x:
    x=r.randintx=randint(0,99)
    print;print(x)

Try it online!Try it online!

Thank you to xnor, danis and mhawke for showing new stuff and helping improve the code!

Python 3, 66 bytes

import random as r
x=1
while x:
    x=r.randint(0,99)
    print(x)

Try it online!

Python 3, 66 56 bytes

from random import*
x=1
while x:x=randint(0,99);print(x)

Try it online!

Thank you to xnor, danis and mhawke for showing new stuff and helping improve the code!

added 98 characters in body
Source Link

[Python 3.8]Python 3, 66 bytes

import random as r
x=1
while x:
    x=r.randint(0,99)
    print(x)

Try it onlineTry it online!

[Python 3.8], 66 bytes

import random as r
x=1
while x:
    x=r.randint(0,99)
    print(x)

Try it online

Python 3, 66 bytes

import random as r
x=1
while x:
    x=r.randint(0,99)
    print(x)

Try it online!

Source Link
Gotoro
  • 149
  • 7

[Python 3.8], 66 bytes

import random as r
x=1
while x:
    x=r.randint(0,99)
    print(x)

Try it online