책 내용에 대한 무단배포 방지를 위해 최소한으로 정리
names = {'Mary':10999, 'Sams':2111, 'Aimy':9778, 'Tom':20245, 'Michale':27115,'Bob':5887, 'Kelly':7855}
items = names.items()
print(items)
for item in items:
print(item)
책 내용에 대한 무단배포 방지를 위해 최소한으로 정리
names = {'Mary':10999, 'Sams':2111, 'Aimy':9778, 'Tom':20245, 'Michale':27115,'Bob':5887, 'Kelly':7855}
items = names.items()
print(items)
for item in items:
print(item)
Comments