scrimba
(18)Python 101 Svenska : 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

(18)Python 101 Svenska : Tuples
AboutCommentsNotes
(18)Python 101 Svenska : Tuples
Expand for more info
index.py
run
preview
console
#Tuples - Snabbare oföränderliga listor
vänner =['John','Eric','Michael','Terry','Graham']
vänner_t =('John','Eric','Michael','Terry','Graham')

print(vänner)
print(vänner_t)
Console
"Tuples - Snabbare oföränderliga listor "
,
/index.html
-4:38