+ 2
* is not working properly
https://code.sololearn.com/cGnEynbsJ4Cb/?ref=app Im making a cal app, plus and sub is working but times is not working How to fix?
1 Odpowiedź
+ 5
It seems to be some character encoding issue, and I risk it that it may be specific to the Sololearn code playground...
I suggest you use a different symbol instead of "×" for the multiplication (it is not trivial to type this symbol anyway)
For example letter x or an asterisk * would work better.
If you insist on × then it will work if you change your condition to this:
if op == chr(120):
print(int(int1) * int(int2))