Чтобы передать список в качестве параметра в Python, вы можете использовать следующие методы:
-
Метод 1: передать весь список в качестве параметра:
def my_function(my_list): # Access the list within the function for item in my_list: print(item) # Call the function and pass the list my_list = [1, 2, 3, 4, 5] my_function(my_list) -
Метод 2. Распакуйте список с помощью оператора звездочки (*):
def my_function(*my_list): # Access the list within the function for item in my_list: print(item) # Call the function and pass the list my_list = [1, 2, 3, 4, 5] my_function(*my_list) -
Метод 3. Передайте список как элемент другого списка или кортежа:
def my_function(my_list): # Access the list within the function for item in my_list: print(item) # Call the function and pass the list my_list = [1, 2, 3, 4, 5] another_list = [my_list] # Pass the list as an element of another list my_function(another_list)
Эти методы позволяют передавать список в качестве параметра функции Python. Выберите метод, который подходит для вашего конкретного случая использования.