Quiz Catalog

Catalog of quizzes

x = {1: 'a', 2: 'b'}
y = {2: 'c', 3: 'd'}

print({**x, **y}[2])
c
  • dict/indexing
  • dict/var-keyword