Multiply two numbers in python August 28, 2021 How to multiply two numbers in python? x=3 y=4 print(x*y) Result-12 Read more
Add four numbers in python August 28, 2021 How to add four numbers in python? p=3 q=4 r=5 s=6 print(p+q+r+s) Result-18 Read more
Add three numbers in python August 28, 2021 How to add three numbers in python? x=3 y=4 z=5 print(x+y+z) Result:-12 Read more
Add two numbers in python August 27, 2021 How to add two numbers in python? x=4 y=6 print(x+y) Result- 10 Read more