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 #136
def foo(*args):
return args
foo(1, 2, 3)
When a function is given the *args parameter, the arg argument is then represented as a tuple in the function. (docs.python.org/dev/tutorial/controlflow.html#more-on-def...)
What is the type of the returned object in the code snippet below?
— The Python Quiz (@thepythonquiz) July 5, 2020
def foo(*args):
return args
foo(1, 2, 3)
A dictionary
A tuple
A list#python #python3 #pythonprogramming #learnpython
Question difficulty: π΅π΅π΅π΅π΅
Similar questions: