The big little idea
A variable gives a name to a value so you can use it again. Think of a labeled pocket in your adventure backpack: the label stays, but you can swap what is inside.
pet = "dragon"
name = "Noodle"
print(f"My {pet} is called {name}.")The = symbol assigns a value. An f-string starts with f before the quotes and lets you insert variables inside {curly braces}. Variable names are case-sensitive: pet and Pet are different.