সমস্ত ফাংশনের একটি বিল্ট-ইন অ্যাট্রিবিউট থাকে __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.