Python - 4
Python - 4: Numbers & Math
Python can work with numbers and solve math problems. You can add, subtract, multiply, and divide.
👀 Show Example Solution
print(15 + 5) print(30 - 10) print(7 * 3) print(40 / 8) age = 25 print(age) print(50 + 50)
