How find the sum of two numbers in phython | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How find the sum of two numbers in phython

Using phython

25th Mar 2020, 3:38 PM
Amal Raj
2 Answers
+ 6
I recommend you to go through the python tutorial, and do some basic codings. There is no shortcut to get familiar with a programming language. Its just reading - learning - practicing.
25th Mar 2020, 3:58 PM
Lothar
Lothar - avatar
+ 1
number1, number2 = float(input()), float(input()) Sum = number1 + number2 print(Sum)
26th Mar 2020, 7:55 PM
Jenya Hight
Jenya Hight - avatar