python 多个return并列使用时,只返回了第一个,如下: 是因为return写法导致的 改成如下格式,只用一个return,不同返回值用逗号隔开即可: return list1[0], list1[num - 1] ok