DEV Community

Jay
Jay

Posted on

Control Flow

Create a simple a list. And let python iterate it.

One quick way of mastering data in the database.

'''
seasons = ['Winter', 'Spring', 'Summer', 'Fall']
for season in seasons:
print(season)

print('In Toronto, we are in' + ': ' + season)
'''

Top comments (0)