python内置函数详解(持续更新,欢迎关注)
文章平均质量分 85
从定义到分析到实践
No-bystander
这个作者很懒,什么都没留下…
展开
-
python内置函数系列之str(三),持续更新。
python内置函数之str(三),持续更新。11. index12. isalnum**类比其它几个方法:**13. join14. replace15. split11. index介绍:"""S.index(sub[, start[, end]]) -> int Return the lowest index in S where substring sub is found,such that sub is contained within S[start:end]原创 2022-03-25 21:55:06 · 1394 阅读 · 0 评论 -
python 内置函数系列之str(二) 持续更新
python 内置函数之str(二) 持续更新7. **encode**8. **decode**9. **endswith**10. **find**书接上回:python 内置函数之str(一) 持续更新7. encode此方法用途广泛,需重点注意与学习。(因为其实很多东西都是以字符串的形式进行传输的,比如图片,音频等)介绍:"""Encode the string using the codec registered for encoding. encodingThe原创 2022-03-25 06:00:00 · 365 阅读 · 0 评论 -
python内置函数系列之str(一)(持续更新)
python内置函数之str(一),持续更新。1. **capitalize**2.**upper**3. **lower**4. **casefold**5. **center**6. **count**对于str字符串,我们经常使用,今天,我们深入了解一下它的内置方法。1. capitalize介绍: """ Return a capitalized version of the string. More specificall原创 2022-03-24 06:00:00 · 1830 阅读 · 0 评论 -
python内置函数系列之set(二)持续更新
python内置函数系列之set(二)书接上回python内置函数系列之set(一)discard(丢弃,删除)介绍: """ Remove an element from a set if it is a member. If the element is not a member, do nothing. """即:如果元素是成员,则从集合中删除它。如果元素不是成员,则不执行任何操作。参数说明:disc原创 2022-03-23 06:00:00 · 1406 阅读 · 0 评论 -
python内置函数系列之set(一)(持续更新)
python内置函数系列之set(持续更新)查看python中set源码(ctrl + 鼠标左键):有如下介绍:""" set() -> new empty set object set(iterable) -> new set object Build an unordered collection of unique elements. """由此可知:set函数返回值:一个 set object (集合对象,即 一个 “无序不原创 2022-03-22 06:00:00 · 14071 阅读 · 5 评论 -
python内置函数系列之map(持续更新)
python 内置函数–map首先,我们先看一下map函数的介绍:显而易见,map函数返回值:一个map object(map 对象,是一个可迭代对象)参数:func(一个函数)iterables(一个或多个可迭代对象)下面我们具体深入了解:# 定义一个 +1 的简单函数def add_one(x): return x + 1# 只传入一个可迭代对象进入map函数a = map(add_one, ls)b = map(add_one, tp)c = map(add原创 2022-03-21 08:00:00 · 896 阅读 · 1 评论