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 #441
print('[%c]' % 65)
The c conversion type supports conversion of characters from their ASCII code to their representation. This also works for Unicode codes. (geeksforgeeks.org/python-output-formatting)
What is the output of the code snippet below?
— The Python Quiz (@thepythonquiz) October 14, 2020
print('[%c]' % 65)
65
A
It will throw a SyntaxError error.
[65]
[A]#python #python3 #pythonprogramming #learnpython
Question difficulty: π΅π΅π΅π΅π΅