age = 15 print(age) # output: 15
15
pi = 3.14 print(pi) # output: 3.14
3.14
x = 5 y = 2 sum = x + y print(sum) # output: 7 product = x * y print(product) # output: 10 quotient = x / y print(quotient) # output: 2.5
7 10 2.5
result = x / 2
x = 5 y = float(x) # Convert x to a float print(y) # output: 5.0 z = int(y) # Convert y back to an integer print(x) # output: 5
5.0 5