python常用方法手记

2021-02-03 13:14

阅读:697

标签: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())))

  

 

python常用方法手记

标签:har   val   csharp   import   数字   isnan   cal   sharp   int   

原文地址:https://www.cnblogs.com/cxscode/p/12801853.html


评论


亲,登录后才可以留言!