标签:har val csharp import 数字 isnan cal sharp int
python 判断是否为空NaN
import math math.isnan(val)
或
import pandas as pd pd.isnull(val)
math常用于数字,传字符串会报错,pd较为通用
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())))
标签:har val csharp import 数字 isnan cal sharp int
原文地址:https://www.cnblogs.com/cxscode/p/12801853.html