python 内置函数

Posted

tags:

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

一  print( )

  flush的应用——模拟进度条

import time
for i in range(1,101):
    time.sleep(0.1)
    print(\r{}%:{}.format(i,**i),end=‘‘,flush=True)           #\r (return) 表示回车  \n (new line)表示换行,实际上是回车换行
print()
print(END!)

二 hash( )

  1 参数必须是不可变类型。

print(hash(aaa))
print(hash(baaa))
print(hash(123))
print(hash(b123))
print(hash(123))
print(hash(True))
print(hash(False))

  输入:

-4644624363813443981
-4644624363813443981
7614025369805395482
7614025369805395482
123
1
0

 三  map( ) 映射  自带遍历可迭代对象功能

 四  filter( ) 过滤  自带遍历可迭代对象功能

 五  enumerate() 函数用于将一个可遍历的数据对象(如列表、元组或字符串)组合为一个索引序列,同时列出数据和数据下标,一般用在 for 循环当中。

  用处:购物车

goods={computer:1000,umbrella:200}

e=enumerate(goods,1)
print(e)
for num,name in e:
    print(num,name,goods[name])

  输出:  

<enumerate object at 0x000001C6FDCA85E8>
1 computer 1000
2 umbrella 200

 

  

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

python有多少内置函数

VBS 环境下如何调用EXCEL内置函数

查找内置 Python 函数的源代码?

python 内置函数

熟练掌握Python的内置函数,加快编程速度

python--内置函数, 匿名函数