Variables & Data Types
Learn how to create and use variables in Python
Variables store data with different types: strings, integers, floats, and booleans.
Example Code
print("Hello")
Expected Output
Hello