Advertisement
Felanpro

while-loop

Jul 16th, 2016
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. random_variable = 30
  2.  
  3. while random_variable <= 50: #While random_variable is less or equal to 50; execute this code below.
  4.     print("Hello World Count: ", random_variable)
  5.     random_variable += 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement