+ 2
How can I separate the calculator into 2 parts?
I recommend using another compilator separately (like Spyder) to understand the error. What I want to do is that when you enter one of the letters, only one formula is activated and nothing else Since what happens is that they activate 2, help me? https://code.sololearn.com/cHnm0kUow2Da/?ref=app
5 Antworten
+ 4
In line 6, you're saving the user input in a variable. Do the same in line 2.
Also, in line 2 you use the input() function to display a text. Why do you expect the same function to compare user input to a string in line 4?
+ 5
Compare line 2 and line 6. One is correct, the other one isn't. And the syntax of a comparison is "if x == y", not "if x(y)" (line 4).
+ 3
hehehe
Thanks
+ 2
??