Make It Do Math
Learn how to use +, -, *, /, and print() with numbers.
We'll cover the following...
We'll cover the following...
Last time, we said “Hello” to our computer. This time, let’s make Python do some number crunching!
Python is amazing at math; unlike us, it never forgets or makes mistakes. So let’s put it to work.
Start calculating
Try running this simple line of Python:
Python
print(4 + 7)
Action: Click the “Run” button and see what happens. ...