导语:
本文主要介绍了关于python fire如何在函数和类中应用的相关知识,包括python append函数,以及python调用其他类中的方法这些编程知识,希望对大家有参考作用。
1、使用函数
fire可非常简单快速地实现命令功能。
$ python hello.py
Hello World!
$ python hello.py --name=Prodesire
Hello Prodesire!
$ python hello.py --help
INFO: Showing help with the command 'hello.py -- --help'.
NAME
hello.py
SYNOPSIS
hello.py <flags>
FLAGS
--name=NAME
2、使用类
使用函数是最简单的方法,如果你想以更有条理的方式来做,比如使用类,fire 也支持它。
import fire
class Calculator(object):
"""A simple calculator class."""
def double(self, number):
return 2 * number
def triple(self, number):
return 3 * number
if __name__ == '__main__':
fire.Fire(Calculator)
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何在python中找到逆矩阵08/30
- ♥ 如何使用 python3 的 Colorama 库添加颜色?12/24
- ♥ python命令行模式是什么11/03
- ♥ python检查字符串是否包含字母08/11
- ♥ python中类的自动调用方式有哪些12/02
- ♥ python 中的 chr() 返回字符11/22
内容反馈