Skip to main content

Add four numbers in python

 How to add four numbers in python?

p=3

q=4

r=5

s=6

print(p+q+r+s)

Result-18

Comments