📜  python 类名 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:08.041000             🧑  作者: Mango

代码示例6
class MyClass:
    """A simple example class"""
    i = 12345

    def f(self):
        return 'hello world'