python学习
PanJM_
这个作者很懒,什么都没留下…
展开
-
浅谈python中的format()函数
函数 str.format(),它增强了字符串格式化的功能。基本语法是通过 {} 和 : 来代替以前的 % 。format 函数可以接受不限个参数,位置可以不按顺序实例1(不设置参数):>>>"{} {}".format("hello", "world") # 不设置指定位置,按默认顺序'hello world' >>> "{0} {1}".format("hello", "world") # 设置指定位置'hello world' >&转载 2021-02-19 21:03:59 · 1642 阅读 · 0 评论 -
浅谈python中的map()函数
map(function, iterable, ...)参数function传的是一个函数名,可以是python内置的,也可以是自定义的。 参数iterable传的是一个可以迭代的对象,例如列表,元组,字符串这样的。map将function应用于iterable的每一个元素,结果以列表的形式返回。iterable后面还有省略号,意思可以传很多个iterable,如果有额外的iterable参数,并行的从这些参数中取元素,并调用function。例一:a,b,c=map(int(), input()原创 2021-02-19 20:46:00 · 510 阅读 · 0 评论