summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/dict1.py
blob: f189266b4d88a03aa90c0362139539da36d0bdd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# basic dictionary

d = {}
print(d)
d[2] = 123
print(d)
d = {1:2}
d[3] = 3
print(d)
d[1] = 0
print(d)
print(d[1])

x = 1
while x < 100:
    d[x] = x
    x += 1
print(d[50])