Vidyalelo
Python · Q168

Functions in Python

Programming · Python · question 168

Q168

What will be the output of the following Python code? def change(one, *two): print(type(two)) change(1,2,3,4)

A.
Integer
B.
Tuple
Answer
C.
Dictionary
D.
An exception is thrown

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board