0
how to write python 3.0 program for simple mathematical operations?
please answer
2 Respuestas
+ 3
You can print out any sort of mathematical expression:
print((4+5)/3)
You can store values in variables:
x = 4
y = 5
print((x+5)/3)
Further you have all sorts of logical tools like conditions, loops, functions and many builtin functions which you can import from the module math.
Go on with your tutorial - you'll figure it out quickly.
+ 3
Check out this tutorial
https://youtu.be/b0nwTZY4dzM
Keep learning!