0
Why is my print code not replacing required numbers in python ?
Here is the code x= 6 while x<=100: print(x) x+=1 if x==65: print("yay") continue if x==66: print("whoah") continue if x==79: print("Done") break
2 Answers
+ 4
leave the break
0
What you mean by replacing number ?
Kindly explain your question.