我是靠谱客的博主 小巧蓝天,这篇文章主要介绍Python 常用写法时间list,现在分享给大家,希望可以做个参考。

时间

1.now

import datetime

now=datetime.now()

nowStr=now.strftime(now,"%Y%m%d%H%M%S")

list

1.分割最后一个

arr=str.rsplit(" ",1)

2.数组,加索引

enumerate(arr)

3.数组,去除空

arr=[x for x in arr if x !=""]

arr=filter(None, arr)

4.去重复

arr=list(set(arr))

5. 是否某条件满足

a = [1, 2, 3, 4, 5]

# 必须所有元素小于等于5 print(all(_ <= 5 for _ in a)) # True

# 存在元素等于5即可 print(any(_ == 5 for _ in a)) # True

最后

以上就是小巧蓝天最近收集整理的关于Python 常用写法时间list的全部内容,更多相关Python内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(60)

评论列表共有 0 条评论

立即
投稿
返回
顶部