
python 学习
啥都只会一点的研究僧
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
LeetCode 刷题
(TOP100 热门题目) 题目介绍: 739. Daily Temperatures Given a list of daily temperatures T, return a list such that, for each day in the input, tells you how many days you would have to wait until a warmer temp...原创 2019-11-25 19:00:00 · 116 阅读 · 0 评论 -
.isalnm()
python 中判断当前是否是一个文本时可用isalnum()方法 可用来剔除空格 >>> str='abc bcd' >>> for i in str: ... print(i.isalnum()) 结果: True True True False True True True 剔除标点 >>> str='abc!@#¥%~b...原创 2019-05-30 09:06:54 · 175 阅读 · 0 评论