python常用方法手记
2021-02-03 13:14
标签:har val csharp import 数字 isnan cal sharp int python 判断是否为空NaN 或 math常用于数字,传字符串会报错,pd较为通用 python常用方法手记 标签:har val csharp import 数字 isnan cal sharp int 原文地址:https://www.cnblogs.com/cxscode/p/12801853.htmlimport math
math.isnan(val)
import pandas as pd
pd.isnull(val)
Python获取当前时间及格式化# 导入time模块
import time
# 打印时间戳
print(time.time())
# 格式化时间戳为本地的时间
print(time.localtime(time.time()))
# 优化格式化化版本
print(time.strftime(‘%Y-%m-%d %H:%M:%S‘,time.localtime(time.time())))
下一篇:内存池、进程池、线程池