초보자를 위한 파이썬 300제
1~100번 진행
list 중복없이 합치기
a_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
b_list = [7, 8, 9, 10, 11, 12, 13, 14, 15]
리스트 중복없이 합치기1
for b in b_list:
if b in a_list:
pass
else:
a_list.append(b)
print(a_list)
# 리스트 중복없이 합치기2
list = set(a_list) | set(b_list)
print(list)