Python提供了许多内置函数,这些函数可以直接在解释器中使用,无需导入其他模块。以下是一些常用的内置函数:

1. 类型转换函数:
    - int(): 转换为整数。
    - float(): 转换为浮点数。
    - str(): 转换为字符串。
    - bool(): 转换为布尔值。
    num_str = "123"
    num_int = int(num_str)
    print(num_int)

2. 数学相关函数:
    - abs(): 返回绝对值。
    - round(): 四舍五入。
    - max(): 返回最大值。
    - min(): 返回最小值。
    print(abs(-5))
    print(round(3.14159, 2))
    print(max(5, 2, 8))

3. 序列相关函数:
    - len(): 返回序列的长度。
    - sum(): 返回序列的元素之和。
    - sorted(): 返回排序后的列表。
    my_list = [1, 2, 3, 4, 5]
    print(len(my_list))
    print(sum(my_list))
    print(sorted(my_list))

4. 输入输出相关函数:
    - print(): 打印输出。
    - input(): 从用户获取输入。
    name = input("Enter your name: ")
    print("Hello, " + name + "!")

5. 文件操作相关函数:
    - open(): 打开文件。
    - read(): 读取文件内容。
    - write(): 写入内容到文件。
    file = open("example.txt", "r")
    content = file.read()
    print(content)
    file.close()

6. 其他常用函数:
    - type(): 返回对象的类型。
    - range(): 创建一个数字序列。
    - help(): 提供帮助信息。
    print(type(42))
    print(list(range(5)))
    help(list)

这只是一小部分内置函数。Python提供了许多其他功能丰富的内置函数,适应不同的编程需求。可以查看[官方文档](https://docs.python.org/3/library/functions.html)以获取更详细的信息。


转载请注明出处:http://www.zyzy.cn/article/detail/13292/Python3