Report Bug
Qus :

What is the return type of following function ?

def func1():
       return 'mnp',22
print(type(func1()))

Qus

निम्नलिखित फंक्शन का रिटर्न प्रकार क्या है?

def func1():
       return 'mnp',22
print(type(func1()))


A. List
B. Dictionary
C. String
D. Tuple


Solution
D. Tuple






Report Bug