Quiz Catalog

Catalog of quizzes

a = [1, 5, 14]

gen = (i * 2 for i in a)
b = list(gen)

print(*gen)
''
  • generator/reusable