scrimba
Learn Python
Tuples
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

AboutCommentsNotes
Tuples
Expand for more info
index.py
run
preview
console
#Tuples - faster Lists you can't change
friends = ['John','Michael','Terry','Eric','Graham']

print(friends)

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