Jul-09-2018, 11:35 PM
1 2 3 4 5 6 7 8 9 10 11 |
def Tester(): condition = 10 while condition ! = 0 : continue condition = condition - 1 if condition = = 0 : print ( "You got it right" ) else : print ( "you got it wrong" ) Tester() |