如图,为什么输出的内容是整个列表?为什么不是列表中的每个元素?
收起
def shoe_list(args): for item in args: print(item) ingre=[1,2,3] shoe_list(ingre)
报告相同问题?