shg104

导航

2022年10月14日 #

python-时间操作

摘要: 1. 获取当前时间 import time # 获取当前日期时间 返回值:当前日期时间def get_now_time(): now = time.localtime() now_time = time.strftime("%Y-%m-%d %H:%M:%S", now) return now_ti 阅读全文

posted @ 2022-10-14 11:37 shg104 阅读(118) 评论(0) 推荐(0) 编辑