Python新函数学习

Posted 王文超BetterThanEver

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python新函数学习相关的知识,希望对你有一定的参考价值。

 

 

示例 说明 相关场景
isinstance(keywords, type) 判断一个变量如keywords是否为type类型    type可以是list、dict等判断一个变量如keywords是否为type类型    type可以是list、dict等
keywords = keywords if isinstance(keywords, list) else keywords.split(‘,‘)
datetime.datetime.strptime(startdate, ‘%Y-%m-%d‘) 时间格式化函数  
 datetime.timedelta(days=0, seconds=0, microseconds=0, milliseconds=0, minutes=0, hours=0, weeks=0)  表示时间间隔   (time1+timedelta(hours =1)).strftime("%y-%m-%d %H:%M:%S")
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     

 

 

 

以上是关于Python新函数学习的主要内容,如果未能解决你的问题,请参考以下文章

学习笔记:python3,代码片段(2017)

Python 函数声明和调用

python学习笔记012——pdb调试

Python学习总结

Python学习(22):模块

Python学习:函数(function)