Your computer genie is the fastest calculator in the universe! 🚀 It can solve huge math problems in a micro-second.
In Python, we deal with Integers (whole numbers).
Words need quotes "Hello", but Numbers do not!
+ Plus- Minus* Multiply (The Star!)/ DivideCalculate how many seconds are in an hour (60 seconds * 60 minutes). Use print!
print(60 * 60)
You have 10 apples. You eat 4. How many are left?
Use variables!
apples = 10 eaten = 4 print(apples - eaten)
1. Which symbol is used for multiplication?
2. Do numbers need quotes?