dict_get.py 65 B

123
  1. for d in {}, {42:2}:
  2. print(d.get(42))
  3. print(d.get(42,2))