0
Numerical operations
Can anyone tell me how to perform basic numerical operations like adding on python because when I do it it does not show any output
2 Respostas
+ 1
You need to tell the computer manually what you want to display. To show basic text use the print function e.g.
print(2 + 3)
print(3 * 3)
0
thanks a lot