赞
踩
99个python经典内置函数!附代码示例
- abs(-10) # 返回绝对值
- max(1, 2, 3) # 返回最大值
- int(3.14) # 将浮点数转换为整数
- str(100) # 将整数转换为字符串
- len([1, 2, 3]) # 返回列表长度
- sum([1, 2, 3]) # 求和
- len("Python") # 返回字符串长度
- "hello".upper() # 转换为大写
- input("Enter a number:") # 读取输入
- print("Hello, World!") # 打印输出
- list(range(5)) # 生成列表
- sorted([3, 1, 2]) # 返回排序后的列表
- dict(zip(['a', 'b'], [1, 2])) # 创建字典
- {'name': 'John'}.get('name') # 获取字典值
- file = open('example.txt', 'w')
- file.write('Hello, World!')
- file.close()
- type(5) # 返回对象类型
- help(max) # 获取函数帮助信息
- for index, value in enumerate([10, 20, 30]): # 枚举元素
- print(index, value)
- all([True, False, True]) # 检查所有元素为真
- any([False, False, True]) # 检查任意元素为真
- hex(255) # 返回十六进制表示
- oct(8) # 返回八进制表示
- round(3.14159, 2) # 四舍五入到指定小数位数
- set1 = {1, 2, 3}
- set2 = {3, 4, 5}
- set1.union(set2) # 返回集合的并集
- set1.intersection(set2) # 返回集合的交集
- with open('example.txt', 'r') as file:
- content = file.read()
- print(content)
- pow(2, 3) # 返回幂运算结果,相当于2^3
- format(255, 'x') # 格式化数字为十六进制字符串
- "hello".capitalize() # 首字母大写
- "hello".replace('e', 'a') # 替换字符
- round(3.7) # 四舍五入
- divmod(10, 3) # 返回商和余数的元组
- file = open('example.txt', 'r')
- lines = file.readlines()
- file.close()
- callable(print) # 检查对象是否可调用
- isinstance(5, int) # 检查对象是否属于指定类型
- numbers = [1, 2, 4, 4, 6]
- s = slice(2)
- print(numbers[s]) # 输出:[1, 2]
- numbers = [3, 1, 6, 2, 5]
- sorted_numbers = sorted(numbers)
- print(sorted_numbers) # 输出:[1, 2, 3, 6, 5]
- class MyClass:
- @staticmethod
- def my_method():
- print("This is a true wolrd.")
-
- MyClass.my_method() # 输出:This is a true world .
等等
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。