专栏名称: Python编程
人生苦短,我用 Python !关注 Python 编程技术和运用。分享 Python 相关技术文章、开发工具资源、热门信息等。
今天看啥  ›  专栏  ›  Python编程

七个好用的装饰器

Python编程  · 公众号  ·  · 2022-07-06 09:36
    

文章预览

来自公众号:Python七号 分享七个好用的装饰器,方便你撸代码。 1、dispach Python 天然支持多态,但使用 dispatch 可以让你的代码更加容易阅读。 安装: pip install multipledispatch 使用: >>>  from  multipledispatch  import  dispatch >>>  @dispatch(int, int) ...  def   add (x, y) : ...       return  x + y >>>  @dispatch(object, object) ...  def   add (x, y) : ...       return   "%s + %s"  % (x, y) >>>  add( 1 ,  2 ) 3 >>>  add( 1 ,  'hello' ) '1 + hello' 2、click click 可以很方便地让你实现命令行工具。 安装: pip install click 使用:demo2.py : import  click @click.command() @click.option('--count', default=1, help='Number of greetings.') @click.option('--name', prompt='Your name',               help= 'The person to greet.' ) def   hello (count, name) :      """Simple program that greets NAME for a total of COUNT times."" ………………………………

原文地址:访问原文地址
快照地址: 访问文章快照
总结与预览地址:访问总结与预览