Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/en/tutorials/Tutorial_05_dictionaries.py
blob: 250297a70796edcadfcabb89736e0d8dc5844abe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
basket = { 'oranges': 12, 'pears': 5, 'apples': 4 }

basket['bananas'] = 5

print basket
print "There are %d various items in the basket" % len(basket)

print basket['apples']
basket['apples'] = 8
print basket['apples']

print basket.get('oranges', 'undefined')
print basket.get('cherries', 'undefined')