PHP前端开发

python中的*是什么意思

百变鹏仔 3天前 #Python
文章标签 python
*号运算符在 Python 中有两种主要用法:进行乘法运算和展开可迭代对象。乘法运算直接将两个数字相乘,而展开运算可以将可迭代对象中的元素解压到变量或函数调用中。

Python中的*号

在 Python 中,*号运算符有两种主要用法:

1. 乘法运算

*号最常用的用法是进行乘法运算。例如:

立即学习“Python免费学习笔记(深入)”;

a = 2b = 3result = a * bprint(result)  # 输出:6

2. 星号展开运算

*号还可以用于展开可迭代对象(如列表、元组和字典)。这可以将可迭代对象中的元素解压到变量或函数调用中。

2.1 展开列表

numbers = [1, 2, 3]*new_numbers, = numbers  # 解压列表到 new_numbers 变量中print(new_numbers)  # 输出:[1, 2]

2.2 展开字典

student = {"name": "Alice", "age": 20}name, *other_info = student.items()  # 解压字典到 name 和 other_info 中print(name)  # 输出:('name', 'Alice')print(other_info)  # 输出:[('age', 20)]

2.3 函数调用时的展开

def my_function(a, b, c):    print(a, b, c)args = [1, 2, 3]my_function(*args)  # 相当于 my_function(1, 2, 3)