内建函数的使用,不需要引入模块,直接调用;
所有的内建函数存在于系统标准库模块builtin.py中;
系统内建函数有很多,这里列举一些常用的
查询变量中内存地址 id()
a = 10 arg1 = 4 arg2 = 6 b = arg1 + arg2 print("a/b", id(a), id(b)) print("两个变量指向相同的数值存储地址 ")
格式化函数format()
# 参数1=要格式化的目标,参数2=格式 s = format(123.456, ".2f") print(s, type(s)) # 123.46 <class 'str'>
数学计算函数
求最大值:max()、求最小值:min()、求绝对值:abs()、求幂:pow()、四舍五入:round()
print(max(1,2)) print(min(1,2)) print(abs(-1.2)) print(pow(2,3)) #8 print(round(-4.6)) #-5
类型与转换
- 获取目标的数据类型:type()
- 取整或字符串转整型:int()
- 数值转字符串:str()
- 转换用户的输入为非字符串:eval()
print(type("hello")) # <class 'str'> print(int("123"), int(123.45)) # 123 123 print(str(123.45), type(str(123.45))) # 123.45 <class 'str'> print(eval("1,2,3"), type(eval("1,2,3"))) # (1, 2, 3) <class 'tuple'>
输入输出函数
- 输入函数:input()
- 输出函数:print()
a = input("输入") print( a )