Learn practical skills, build real-world projects, and advance your career

Variables

Variables are simply boxes or containers for storing data values.

x = 100
y = "FSEAI"
print(x)
print(y)
100 FSEAI

Variables do not need to be declared with any particular type and can even change type after they have been set

Re-declare a Variable