V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
ppj
V2EX  ›  Python

Python 每日一练:猴子补丁

  •  
  •   ppj · 2022-09-17 13:45:38 +08:00 · 1618 次点击
    这是一个创建于 558 天前的主题,其中的信息可能已经有所发展或是发生改变。

    Python 每日一练:猴子补丁

    猴子补丁是一项允许在运行时( runtime )更改对象行为的技术。 它是一个非常有用的功能,但它也可能使你的代码更难以理解和调试,因此,在实现猴子补丁程序时必须谨慎。

    查看代码 => 代码

    1 条回复    2022-09-17 22:42:08 +08:00
    brucmao
        1
    brucmao  
       2022-09-17 22:42:08 +08:00
    文章中,最后一个例子试了不成功
    将 from socket import * 改成 import socket ,然后后面也改一下才行
    if __name__ == '__main__':
    server = socket.socket()
    .........
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5929 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 29ms · UTC 02:06 · PVG 10:06 · LAX 19:06 · JFK 22:06
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.