时间监测以及简单函数封装以及返回值
Posted yanhui1995
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间监测以及简单函数封装以及返回值相关的知识,希望对你有一定的参考价值。
import time
with open(‘db.txt‘,mode=‘at‘,encoding=‘utf_8‘) as f:
f.write(‘%s xiayu ‘%time.strftime(‘%Y-%m-%d %X‘))
with open(‘db.txt‘,mode=‘rb‘) as f :
f.seek(0,2)
while True:
line=f.readline()
if len(line) == 0:
continue
else:
print(line.decode(‘utf_8‘),end=‘|‘)
#
# def max2(x,y):
# if x>y:
# return x
# else:
# return y
#
# res=max2(20,30)
# print(res*12)
以上是关于时间监测以及简单函数封装以及返回值的主要内容,如果未能解决你的问题,请参考以下文章