+ 3
Help with code from lesson (Python)
So I tried recreating the calculator from the python lessons here on the app, but it just keeps repeating constantly, is there any way to fix this? https://code.sololearn.com/c29qdu6etWIb/?ref=app
3 Answers
+ 3
This calculator will work better if done on a Python shell.
+ 1
Itâll keep repeating because your continuation condition on the while loop is always True and the only break away is by typing âquitâ
+ 1
You can have break after every print to close the operation