Python specific syntax > Syntax List > Flashcards
Creates a list.
syntax ex my_list = [1, 2, 3]
my_list = [1, 2, 3]print(my_list)
output:[1, 2, 3]