最佳答案
在期望项列表的函数中,如何传递Python列表项而不得到错误?
my_list = ['red', 'blue', 'orange']
function_that_needs_strings('red', 'blue', 'orange') # works!
function_that_needs_strings(my_list) # breaks!
肯定有一种方法可以扩展列表,并将函数'red','blue','orange'
传递给它?我想这就是所谓的“开箱”。