Report Bug
Qus : Given a function that does not return any value, What value is thrown by default when executed in shell.
Qusऐसे फ़ंक्शन को देखते हुए जो किसी भी वैल्यू को रिटर्न नहीं करता है, शेल में एक्सक्यूटेड होने पर डिफ़ॉल्ट रूप से कौन सी वैल्यू को हटा दिया जाता है।

A. int
B. bool
C. void
D. None


Solution
D. None



Explanation
Python shell throws a NoneType object back.



Report Bug