「len()」 - 返回对象的长度或项目数。
length = len("Hello, World!") # 返回 13
「str()」 - 将对象转换成字符串。
string_representation = str(123) # 返回 '123'
「type()」 - 返回对象的类型。
type_of_var = type("Hello") # 返回 < class 'str'>
「int()」 - 将对象转换成整数。
integer_value = int("123") # 返回 123
「float()」 - 将对象转换成浮点数。
float_value = float("123.45") # 返回 123.45
「bool()」 - 将对象转换成布尔值。
boolean_value = bool(0) # 返回 False
「list()」 - 将对象转换成列表。
my_list = list((1, 2, 3)) # 返回 [1, 2, 3]
「tuple()」 - 将对象转换成元组。
my_tuple = tuple([1, 2, 3]) # 返回 (1, 2, 3)
「set()」 - 将对象转换成集合。
my_set = set([1, 2, 2, 3]) # 返回 {1, 2, 3}
「dict()」 - 创建一个字典。
my_dict = dict(name='Alice', age=25) # 返回 {'name': 'Alice', 'age': 25}
「sorted()」 - 对可迭代对象的元素进行排序。
sorted_list = sorted([3, 1, 2]) # 返回 [1, 2, 3]
「dir()」 - 返回对象的属性和方法的列表。
attributes = dir("Hello") # 返回字符串对象的方法列表
「getattr()」 - 从对象中获取属性值。
attribute_value = getattr("Hello", "upper") # 返回字符串对象的 upper 方法
「setattr()」 - 设置对象的属性值。
class My class:
pass
instance = My class()
setattr(instance, "my_attribute", "Hello")「hasattr()」 - 检查对象是否具有属性。
has_upper = hasattr("Hello", "upper") # 返回 True
「isinstance()」 - 检查对象是否是类的实例。
is_str = isinstance("Hello", str) # 返回 True
「issub class()」 - 检查一个类是否是另一个类的子类。
is_sub class = issub class(str, object) # 返回 True
「print()」 - 打印对象到控制台。
print("Hello, World!") # 打印 "Hello, World!"
「range()」 - 生成整数序列。
for i inrange(5): # 0, 1, 2, 3, 4
print(i)「zip()」 - 将多个可迭代对象中对应的元素打包成一个个元组。
a = [1, 2, 3]
b = ["one", "two", "three"]
for x, y inzip(a, b):
print(x, y) # 打印 (1, 'one'), (2, 'two'), (3, 'three')「all()」 - 如果迭代器中的所有元素都为真值,则返回 True。
all_elements = all([1, 2, 3, 4]) # 返回 True
「any()」 - 如果迭代器中至少有一个元素为真值,则返回 True。
any_elements = any([0, 1, 2]) # 返回 True
「enumerate()」 - 将一个可迭代对象组合为一个索引序列,同时列出数据和数据下标。
for index, value inenumerate(["a", "b", "c"]):
print(index, value) # 打印 0 a, 1 b, 2 c「filter()」 - 使用函数从可迭代对象中过滤出符合条件的元素。
even_numbers = filter(lambda x: x % 2 == 0, [1, 2, 3, 4, 5]) # 返回 2, 4
「map()」 - 将一个函数应用于可迭代对象的每个元素。
squared_numbers = map(lambda x: x**2, [1, 2, 3, 4]) # 返回 1, 4, 9, 16
「reduce()」 - 对可迭代对象中的元素进行累积操作。
from functools import reduce
total = reduce(lambda x, y: x + y, [1, 2, 3, 4]) # 返回 10「sum()」 - 求和可迭代对象中的元素。
total_sum = sum([1, 2, 3, 4]) # 返回 10
「max()」 - 返回可迭代对象中的最大值。
max_value = max([1, 2, 3, 4]) # 返回 4
「min()」 - 返回可迭代对象中的最小值。
min_value = min([1, 2, 3, 4]) # 返回 1
「abs()」 - 返回数字的绝对值。
absolute_value = abs(-10) # 返回 10
「pmod()」 - 取模和除法运算,返回一个包含商和余数的元组。
quotient, remainder = pmod(10, 3) # 返回 (3, 1)
「round()」 - 对浮点数进行四舍五入。
rounded_value = round(3.14159, 2) # 返回 3.14
「input()」 - 从控制台读取一行输入。
user_input = input("Enter something: ") # 等待用户输入
「open()」 - 打开一个文件,并返回文件对象。
file = open("example.txt", "r") # 打开文件用于读取
「staticmethod()」 - 将一个方法转换为静态方法。
class My class:
@staticmethod
def my_static_method():
pass「 classmethod()」 - 将一个方法转换为类方法。
class My class:
@ classmethod
def my_ class_method(cls):
pass「property()」 - 将一个方法转换为属性。
class My class:
def __init__(self, value):
self._my_attribute = value
@property
def my_attribute(self):
return self._my_attribute「isinstance()」 - 检查一个对象是否是一个已知的类型。
isinstance(123, int) # 返回 True
「globals()」 - 返回当前全局符号表的字典。
globals_dict = globals() # 返回包含当前全局变量的字典
「locals()」 - 返回当前局部符号表的字典。
local_dict = locals() # 返回包含当前局部变量的字典