赞
踩
#6-1
information={
'first_name':'simba',
'last_name':'lee',
'age':str(3),
'city':'nj',
}
for a,b in information.items():
print(a,b)
#6-5
rivers={
'nile':'egypt',
'abcd':'china',
'1234':'usa',
}
for river,country in rivers.items():
print('The '+ river+' runs through '+country.title()+'.')
for river in rivers.keys():
print(river)
for name in rivers.values():
print(name.title())
#6-6
favorite_languages={
'jen':'python',
'sarah':'c',
'edward':'ruby',
'phil':'python',
}
names=['jen','tom',&#
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。