Quiz Catalog

Catalog of quizzes

lst = ["ab", "vm"]
for x in lst:
  lst.append(x.upper())

print(lst)
Infinite loop.
  • list/operation/append
  • string/operation/upper