Python Programs | IT Developer
IT Developer

Python Programs



Share with a Friend

Print the result of a simple arithmetic expression - Python Program

# Prints the result of basic arithmetic operations print("5 + 3 =", 5 + 3) print("10 / 2 =", 10 / 2)

Output

 
OUTPUT :
5 + 3 = 8
10 / 2 = 5.0