python怎么按照顺序执行函数
python中按文本顺序执行函数,具体方法如下:
1.首先,新建文本文件test.txt,并在文件中添加以下内容;
func1,life is short
func2,use python
func1, hello word
2.test文件新建好后,在python中使用main函数定义执行顺序;
class Example(object):
def __init__(self):
pass
def func1(self, arg):
print 'this is func1, arg is {}.'.format(arg)
def func2(self, arg):
print 'this is func2, arg is {}.'.format(arg)
if __name__ == '__main__':
example_instance = Example()
with open('test.txt', 'r') as f:
for line in f.readlines():
function_name, args = line.strip().split(',')
getattr(example_instance, function_name)(args)
声明:本站所有作品(图文、音视频)均由用户自行上传分享,或互联网相关知识整合,仅供网友学习交流,若您的权利被侵害,请联系 管理员 删除。
本文链接:http://news.ew35.com/