码迷,mamicode.com
首页 > 编程语言 > 详细

python常用方法手记

时间:2020-04-29 15:09:19      阅读:97      评论:0      收藏:0      [点我收藏+]

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!