result=[]for a in list1: fob b in list2: result.append(a+b)print(result)
list1中每个数与list2中每个数相加,结果保存在result中