πŸ§™β€β™‚οΈ Python Wizard!

Data Types and Variables

πŸ” Quick Lesson

In Python, variables are used to store data, and data types define what kind of data you are working with.

Python is dynamically typed, meaning you don’t have to declare the typeβ€”it figures it out for you!

We'll go into more detail in the upcoming sections, but make sure you understand the basics first.

🧠 Mini Quiz: Test Your Knowledge!

1. What data type is used to store text in Python?



2. Which of these is a valid variable assignment?



3. What is the output of type(3.14) in Python?