+ 1
Please suggest me what is wrong in that code
3 Answers
+ 3
break outside loop
1. the while loop ended with the user_input = input (":") operator. Already this operator is not included in the cycle. Probably, it was not so.
2. The constant true does not exist, in Python is a constant True.
+ 1
please tell me solution