Skip to main content
added 23 characters in body
Source Link

Python 3, 62 60 59 45 4343 41 bytes

from randomimport import*os while randomos.urandom(1)[0]:print(1) 

Try online!Try online!

Thanks to @pxeger, @mvirts and, @MarcMush and @loopywalt.

Python 3, 62 60 59 45 43 bytes

from random import* while random():print(1) 

Try online!

Thanks to @pxeger, @mvirts and @MarcMush.

Python 3, 62 60 59 45 43 41 bytes

import os while os.urandom(1)[0]:print(1) 

Try online!

Thanks to @pxeger, @mvirts, @MarcMush and @loopywalt.

added 16 characters in body
Source Link

Python 3, 62 60 59 4545 43 bytes

from random import* while random():print('x'1) 

Try online!Try online!

Thanks to @pxeger and, @mvirts and @MarcMush.

Python 3, 62 60 59 45 bytes

from random import* while random():print('x') 

Try online!

Thanks to @pxeger and @mvirts.

Python 3, 62 60 59 45 43 bytes

from random import* while random():print(1) 

Try online!

Thanks to @pxeger, @mvirts and @MarcMush.

deleted 4 characters in body
Source Link

Python 3, 62 60 5959 45 bytes

from random import* s='' while randintrandom(0,1):s+='x' print(s'x') 

Try online!Try online!

Thanks to @pxeger! and @mvirts.

Python 3, 62 60 59 bytes

from random import* s='' while randint(0,1):s+='x' print(s) 

Try online!

Thanks to @pxeger!

Python 3, 62 60 59 45 bytes

from random import* while random():print('x') 

Try online!

Thanks to @pxeger and @mvirts.

added 8 characters in body
Source Link
Loading
added 27 characters in body
Source Link
Loading
Source Link
Loading