+ 2
First, you will have to name the list, and put the list of items between brackets: words = ["Hello", "world", "!"] Then, you can print items from the list by calling the numbers. print(words[0]) print(words[1]) print(words[2])
16th Mar 2018, 10:29 AM
Hamsdino
Hamsdino - avatar