how to write python 3.0 program for simple mathematical operations? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

how to write python 3.0 program for simple mathematical operations?

please answer

27th Dec 2019, 12:49 PM
Adarsha Shimoga
Adarsha Shimoga - avatar
2 Answers
+ 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.
27th Dec 2019, 1:04 PM
HonFu
HonFu - avatar
+ 3
Check out this tutorial https://youtu.be/b0nwTZY4dzM Keep learning!
27th Dec 2019, 1:14 PM
nelida murataj
nelida murataj - avatar