Python is a high-level language
Python is used in a LOT of real-world settings
Take-away: Python will give you super-powers to make your life better :)
Consider a simple situation: some random person (let's call him "Nate") is coming to London and wants to get £100, write a program to compute how many US dollars Nate is going to need to bring
Think!
NOW write code
# Attempt 1: Syntax Error
print(100 ÷ 0.8)
# Attempt 2: Runtime Error
print(100 / 0 + .8)
# Attempt 3: Semantic Error
print(100 + 0.8)
# Attempt 4
print(100 / 0.8)