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

#Python Variable and Data types

my_favorite_color = 'blue'
my_favorite_color
'blue'
color1,color2,color3,color4 = 'red','green','yellow','orange'
color1
'red'