Spot the NameError
One of these lines will cause a NameError. Predict which one and why, then fix the program so it prints the greeting correctly.
city = "Ames"
print("Hello from", City)
Step 1 — Predict the error
Read the program. Which kind of error (or non-error) will Python raise?