scrimba
Python 101 in Bangla
18. 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
18. 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:30