The quiz where the difficulty automagically adapts to the player's Python knowledge
This is a question page. You can use this page to bookmark a question. Start a new quiz!
Question #896
print(any([exit(0), True]))
Nothing will be printed. exit(0) will be found before the function any() can return True or False . (python101.pythonlibrary.org/chapter20_sys.html#sys-exit)
Question difficulty: 🔵🔵🔵🔵🔵
Similar questions: