Python Variables

Python Variables

Variables store data values in Python.

x = 10
name = "Rahul"
is_active = True
print(x, name, is_active)