Guest User

Untitled

a guest
Jul 12th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. #fill in the _____ so that 'done' gets outputted
  2. x = 0
  3. while True:
  4.     print(x) if x < 5 else _______
  5.     x+=1
  6. print('done')
Add Comment
Please, Sign In to add comment