Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- a = 1
- b = 2
- while (a < b):
- print("This is a loop")
- break
- while (1 < 2):
- print("This is a loop")
- break
- while (a < 2):
- print("This is a loop")
- break
- while (1 < b):
- print("This is a loop")
- break
- while (b > a):
- print("This is a loop")
- break
- while (2 > 1):
- print("This is a loop")
- break
- while (2 > a):
- print("This is a loop")
- break
- while (b > 1):
- print("This is a loop")
- break
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement