0
Hi everyone.Can someone explain how you add or subtract on python playground? Thanks
simple operations
3 ответов
+ 6
Thanks to Google! This might help you 👇
https://www.digitalocean.com/community/tutorials/how-to-do-math-in-JUMP_LINK__&&__python__&&__JUMP_LINK-3-with-operators
How To Do Math in Python 3 with Operators | DigitalOcean
+ 2
print(4+2) # 6
print(4-2) # 2
print(4*2) # 8
print(4/2) # 2.0
+ 1
you can just do print(operation here)