python 自己写个调试工具 其他 2021-02-09 10:11 0 阅读 python 自己写个调试工具 代码 # -*- coding:utf-8 -*- import time import sys def get_now_time(): """ 获取当前日期时间 :return:当前日期时间 """ now = time.localtime() now_time = time.strftime("%Y-%m-%d %H:%M:%S" 猜你喜欢