Programming Linux
Courses
while
for
uniq()
join()
/etc/passwd
googletest
About
Blog
In the interactive interpreter, create a dictionary like so:
>>> d = { ... 'one': 1, ... 'two': 2, ... } >>> d['one'] 1
What happens if you access a non-existent key?
>>> d['three']