Write a python program to accept two numbers from the user and perform basic
calculations such as addition, subtraction and multiplication.
Answers
Answered by
0
def is the keyword in python programming language used in the beginning of definition of the function . Function name is used to call anything which is defined in the definition of function.
print is the keyword in python programming language . It print anything which is written within it .
input takes the input from the user in the form of string .
int converts the input into integer form .
Similar questions