1
Answer

how to add two numbers in python

Photo of Madhu Patel

Madhu Patel

1y
43
1

explain python then write the code.

Answers (1)

0
Photo of Harshit Pandey
4 51k 13.3k 1y


# Adding two numbers in Python
num1 = 5
num2 = 3
sum = num1 + num2
print("The sum of", num1, "and", num2, "is:", sum)