About: I love learning everything that comes my way to build scalable and performant software that provides seamless and engaging user experiences.
my_dict = {'name': 'Guido', 'year': 1991} print(my_dict['name']) Enter fullscreen mode ...
1. How Do Lists Really Work? myList = [1, 2, 3, 4] for i in myList: print(i) ...