Python 传递列表作为参数
传递列表作为参数
您可以将任何类型的数据作为参数传递给函数(字符串、数字、列表、字典等),它将在函数内部被视为相同的数据类型。
例如,如果您将列表作为参数传递,它在到达函数时仍然是列表。
示例
def my_function(food)
for x in food
print(x)
fruits = ["apple", "banana", "cherry"]
my_function(fruits)
试试看 »
您可以将任何类型的数据作为参数传递给函数(字符串、数字、列表、字典等),它将在函数内部被视为相同的数据类型。
例如,如果您将列表作为参数传递,它在到达函数时仍然是列表。
def my_function(food)
for x in food
print(x)
fruits = ["apple", "banana", "cherry"]
my_function(fruits)
试试看 »
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]