Learn practical skills, build real-world projects, and advance your career
my_fav_colour = 'blue'
my_fav_colour
'blue'
col1, col2, col3 = 'blue', 'green', 'red'
col1, col2, col3
('blue', 'green', 'red')
col4 = col5 = col6 = 'pink'