1. 输入/输出函数
- print():打印输出内容。
print("Hello, World!")
- input():接收用户输入。
name = input("Enter your name: ")
2. 类型转换函数
- int()、float()、str():将值转换为整数、浮点数、字符串。
num_str = "123"
num_int = int(num_str)
num_float = float(num_str)
3. 数学函数
- abs():返回绝对值。
absolute_value = abs(-5)
- max()、min():返回可迭代对象中的最大值和最小值。
maximum = max(3, 7, 1, 9)
minimum = min(5, 2, 8, 4)
- sum():返回可迭代对象的和。
total = sum([1, 2, 3, 4, 5])
4. 序列操作函数
- len():返回序列的长度。
length = len([1, 2, 3, 4, 5])
- sorted():返回排序后的可迭代对象。
sorted_list = sorted([5, 2, 8, 1, 3])
5. 字符串处理函数
- len():返回字符串长度。
length = len("Hello, World!")
- str.upper()、str.lower():将字符串转换为大写或小写。
upper_case = "Hello".upper()
lower_case = "WORLD".lower()
- str.strip():去除字符串两端的空白字符。
stripped_text = " Hello, World! ".strip()
6. 其他常用函数
- type():返回对象的类型。
data_type = type(42)
- range():生成一个范围内的整数序列。
numbers = list(range(1, 6))
- help():获取帮助信息。
help(len)
这只是一小部分常用的内置函数,Python 提供了更多有用的函数。要查看完整的内置函数列表和它们的用法,可以查阅 Python 官方文档。
转载请注明出处:http://www.zyzy.cn/article/detail/240/Python3