Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Ask questions, find answers and collaborate at work with Stack Overflow for Teams.
Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
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!
import random as r x=1 while x: x=r.randint(0,99) print(x)
Try it online!
from random import* x=1 while x:x=randint(0,99);print(x)
Try it onlineTry it online!
Try it online