+ 1
How to do python calculations
When I add (+), it just adds both numbers, like if I do 9+7, it gives my 97?
2 ответов
+ 9
That's for strings:
"9"+"7"="97"
And for numbers:
9+7=16
0
You should start learning first about data types and how to implement/ use them