0
How find the sum of two numbers in phython
Using phython
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.
+ 1
number1, number2 = float(input()), float(input())
Sum = number1 + number2
print(Sum)