Q. What is the output of the following code?
Code:
def sayHello(*name):
print('Hello', name)
sayHello('Yohan', 'Thomas')
โ
Correct Answer: (B)
Hello (‘Yohan’, ‘Thomas’)