I cant understand why there isn't any output for this: | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

I cant understand why there isn't any output for this:

i= int(input("How much money do you have?") while i >= 1000: print("YOU ARE RICH!!!") else: print("YOU ARE BROKE!!!")

4th Mar 2020, 4:09 AM
Iklas
Iklas - avatar
1 Answer
+ 3
use if instead of while. using while will make a loop that will run until the condition is false. but the value of i never change, thus it's an infinite loop. use if to peform a single check, instead of while
4th Mar 2020, 4:15 AM
Taste
Taste - avatar