反射 : 是用字符串类型的名字 去操作 变量 相比于用eval('print(name)') 留有 安全隐患 反射 就没有安全问题 hasattr 语法: getattr与hasattr语法相同,返回的结果是对应name的值或函数。 注意:反射本py文件的name时 用sys.modules[__n ...
分类:
编程语言 时间:
2019-01-07 22:34:54
阅读次数:
193
1 #Author : Kelvin 2 #Date : 2019/1/6 15:10 3 4 import time 5 #获取此时的时间戳(从此刻到1970年一月一号零点的秒数) 6 res1=time.time() 7 print(res1) 8 #>>> 1546759871.016021 ... ...
分类:
编程语言 时间:
2019-01-06 18:04:52
阅读次数:
199
# 功能要求: 每一次调用函数之前, 要将函数名称, 时间节点记录到log的日志中.# 所需模块:# import time## def logger(fn):# def inner(*args, **kwargs):# # fn.__name__ # 函数名字# f = open("log", m ...
分类:
其他好文 时间:
2019-01-02 17:22:28
阅读次数:
179
windows7环境下,执行代码报ValueError: embedded null byte时,在原代码前面加一行代码:locale.setlocale(locale.LC_ALL,'en')即可解决 即: locale.setlocale(locale.LC_ALL,'en') locale.s ...
分类:
编程语言 时间:
2018-12-24 19:55:00
阅读次数:
604
time模块 time模块,常用方法:time()localtime()asctime()strftime()strptime()mktime()clock() time()方法,获取当前时间的时间戳print time.time()运行结果:1545005056.78[Finished in 0. ...
分类:
编程语言 时间:
2018-12-17 21:11:38
阅读次数:
231
def task(): current_time = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(current_time) coordinate_list = Getlnglat().spyder_list_all() p ...
分类:
其他好文 时间:
2018-12-11 15:56:54
阅读次数:
530
import datetimeimport os# 当前时间nowTime = datetime.datetime.now().strftime('%Y-%m-%d-%H-%M-%S')# 当前时间目录路径pathStr = os.path.abspath('.') + "/" + nowTime# ...
分类:
其他好文 时间:
2018-12-10 14:10:35
阅读次数:
205
import time print(time.time())print(time.localtime())print(time.strftime('%Y-%m-%d %X',time.localtime())) 绘图显示中文配置 import matplotlib.pyplot as plt a = ...
分类:
编程语言 时间:
2018-12-06 14:25:17
阅读次数:
147
1、取当前时间戳和当前格式化时间 2、将时间戳转换成时间元组,将时间元组转化成格式化时间 3、将格式化好的时间转时间元组,将时间元组转时间戳 ...
分类:
其他好文 时间:
2018-12-05 02:03:46
阅读次数:
185
#-*-coding:utf-8-*-import datetime;import random;nowTime=datetime.datetime.now().strftime("%Y%m%d%H%M%S");#生成当前时间randomNum=random.randint(0,9);#生成的随机整 ...
分类:
其他好文 时间:
2018-12-03 16:33:21
阅读次数:
834