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 #6
int('4') + int('2')
First, Python casts the strings '4' and '2' to integers. Then, it adds them. (docs.python.org/3/library/functions.html)
What is the output of?
— The Python Quiz (@thepythonquiz) May 4, 2020
int('4') + int('2')
6
42#python #python3 #pythonprogramming #learnpython
Question difficulty: π΅π΅π΅π΅π΅
Similar questions: