Lesson 5: Python Variables

Variables are used to store data in Python.

name = "Yusuf"
age = 20
is_student = True

print(name)
print(age)
print(is_student)

Python automatically understands the type of data you store.

Next Lesson →