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 #284
import string
print(string.ascii_lowercase + string.ascii_uppercase == string.ascii_letters)
True! string.ascii_letters is the concatenation of string.ascii_lowercase and string.ascii_uppercase . (docs.python.org/3/library/string.html)
What is the output of the code snippet below?
— The Python Quiz (@thepythonquiz) November 14, 2020
import string
print(string.ascii_lowercase + string.ascii_uppercase == string.ascii_letters)
False
True#python #python3 #pythonprogramming #learnpython
Question difficulty: π΅π΅π΅π΅π΅
Similar questions: