scrimba
Learn Python
Lists- continued
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Lists- continued
AboutCommentsNotes
Lists- continued
Expand for more info
index.py
run
preview
console
friends = ['John','Michael','Terry','Eric','Graham']
cars = [911,130,328,535,740,308]
print(friends)

Console
"['John', 'Michael', 'Terry', 'Eric', 'Graham'] "
,
index.html
-7:12