सभी फ़ंक्शन में एक अंतर्निहित विशेषता __doc__ होती है, जो फ़ंक्शन स्रोत कोड में परिभाषित दस्तावेज़ स्ट्रिंग लौटाती है।
def foo(): """ This is an example of how a doc_string looks like. This string gives useful information about the function being defined. """ pass print foo.__doc__
आइए देखें कि जब हम इसे प्रिंट करेंगे तो यह कैसा दिखेगा
This is an example of how a doc_string looks like. This string gives useful information about the function being defined.