Today's lesson: Understanding Variables and Data Types
We're going to start with the basics. Don't worry, it's not as painful as it sounds.
Variables are like labeled boxes that hold data. Think of them as sticky notes with a name on them.
There are many data types: strings, integers, floats, booleans, lists, and dictionaries. Don't worry, we'll get to those later.
Now, let's try some examples:
print('Hello World!')
x = 5 print(x)
x = 3 > 5 print(x)