37,743
社区成员




list1 = [91, 95, 97, 99, 100]
list2 = [92, 93, 96, 98, 101, 102, 105, 109]
list3 = []
if list1[0] >= list2[0]:
list3.append(list2[0])
else:
list3.append(list1[0])
order = 0
for score1 in list1:
for score2 in list2:
if score2 >= score1 and score2 <= list1[order]:
list3.append(score2)
if order <= len(list1)-1:
list3.append(list1[order])
order += 1
print(list3)