scrimba
Learn Python
Dictionaries II
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

Dictionaries II
AboutCommentsNotes
Dictionaries II
Expand for more info
index.py
run
preview
console
movie = {
'title' : 'Life of Brian',
'year' : 1979,
'cast' : ['John','Eric','Michael','Graham','Terry']
}
for key, value in movie.items():
print(key, value)


Console
"title Life of Brian "
,
"year 1979 "
,
"cast ['John', 'Eric', 'Michael', 'Graham', 'Terry'] "
,
/index.html
-6:19