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

ฉันจะรับรายการวิธีการในคลาส Python ได้อย่างไร


โค้ดต่อไปนี้จะพิมพ์รายการเมธอดของคลาสที่กำหนดดังนี้

ตัวอย่าง

class foo:
    def __init__(self):
        self.x = x
    def bar(self):
        pass
    def baz(self):
        pass
print (type(foo))
import inspect
print(inspect.getmembers(foo, predicate=inspect.ismethod))

ผลลัพธ์

ผลลัพธ์คือ

<type 'classobj'>
[('__init__', <unbound method foo.__init__>), ('bar', <unbound method foo.bar>), ('baz', <unbound method foo.baz>)]