<dd id="sga4y"><optgroup id="sga4y"></optgroup></dd>
<nav id="sga4y"><code id="sga4y"></code></nav>
  • <optgroup id="sga4y"></optgroup>
    ???? Python ???
    ??11?? ??????????
    ???? ?? ????

    ??

    ????????????????????????????????

    ?????????

    ??11.1 ?????????

    #!/usr/bin/python
    # Filename: simplestclass.py


    class Person:
        pass # An empty block

    p = Person()
    print p

    ????????code/simplestclass.py??

    ???

    $ python simplestclass.py
    <__main__.Person instance at 0xf6fcb18c>

    ????¦É???

    ???????class?????????????????????¦Ì?????????????????????????¦Ã????‰^??????????§µ????????????????ï…????pass???????

    ???????????????????????????????????????????/?????????????????????????????????¦Ä???????????????????????????????????????????????????????????????????__main__????????????Person????????

    ????????›¥??????????????????????????????????????????????????????????Python???????¦Ê¦Ï?¦Ë?›¥????


    ???? ????? ????
    self ??? ????????
    ?????
    @ssv 97av