Python内置函数

Posted

tags:

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

https://www.runoob.com/python/python-built-in-functions.html

abs() 函数返回数字的绝对值

print(abs(-5))

python divmod() 函数把除数和余数运算结果结合起来,返回一个包含商和余数的元组(a // b, a % b)。

print(divmod(7,2))

python open() 函数用于打开一个文件,创建一个 file 对象,相关的方法才可以调用它进行读写

f=open(r‘D:201801.txt‘,‘r‘,encoding=‘utf-8‘)
print(f.read())

python staticmethod 返回函数的静态方法

all() 函数用于判断给定的可迭代参数 iterable 中的所有元素是否都为 TRUE,如果是返回 True,否则返回 False。

元素除了是 0、空、FALSE 外都算 TRUE

print(all([‘a‘,‘b‘,‘c‘]))
print(all([‘a‘,‘b‘,‘c‘,‘‘]))
print(all([‘a‘,‘b‘,‘c‘,0]))
print(all([‘a‘,‘b‘,‘c‘,False]))
print(all(())) #空元组

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

seasons=(‘Spring‘,‘Summer‘,‘Fall‘,‘Winter‘)
print(list(enumerate(seasons)))
print(list(enumerate(seasons,start=10))) #下标从10开始
for i,element in enumerate(seasons):
print(i,element)

int() 函数用于将一个字符串或数字转换为整型

print(int(‘2‘))
print(int(3.7))

ord() 函数是 chr() 函数(对于8位的ASCII字符串)或 unichr() 函数(对于Unicode对象)的配对函数,它以一个字符(长度为1的字符串)作为参数,

返回对应的 ASCII 数值,或者 Unicode 数值,如果所给的 Unicode 字符超出了你的 Python 定义范围,则会引发一个 TypeError 的异常

print(ord(‘a‘))

str() 函数将对象转化为适于人阅读的形式

dict={‘username‘:‘tom‘,‘age‘:28,‘hobby‘:‘篮球‘}
print(dict)
print(str(dict))

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

python如何查看内置函数

Python 内置函数

python基础9 -----python内置函数

Python isinstance() 函数 Python 内置函数 Python 内置函数

python 函数--内置函数

二级Python----Python的内置函数及标准库(DAY 8)