Python之路15-函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python之路15-函数相关的知识,希望对你有一定的参考价值。
import time def logger(): with open(‘a.txt‘,‘a+‘) as f: time_format = ‘%Y-%m-%d %X‘ time_current = time.strftime(time_format) f.write(‘%s end action\n‘ % time_current) def test1(): ‘‘‘testing1‘‘‘ print (‘test1 starting action...‘) logger() def test2(): ‘‘‘testing2‘‘‘ print (‘test2 starting action...‘) logger() def test3(): ‘‘‘testing3‘‘‘ print(‘test3 starting action...‘) logger() test1() test2() test3() #代码重用 #保持一致性 #可扩展
本文出自 “八英里” 博客,请务必保留此出处http://5921271.blog.51cto.com/5911271/1896749
以上是关于Python之路15-函数的主要内容,如果未能解决你的问题,请参考以下文章