Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

แอตทริบิวต์คลาสในตัว __doc__ ทำอะไรใน Python


ฟังก์ชันทั้งหมดมีแอตทริบิวต์ในตัว __doc__ ซึ่งส่งคืนสตริง 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.