Lesson 8: print() with Variables
We can hand print() a variable instead of a string. Watch the difference between print(name) and print("name").
No quotes → Python looks up the variable's value. With quotes → it shows the letters themselves.
- lookup
- The action where Python finds a variable's value by its name.