list1 = [x for x in range(2,10)]
list2 = [" x "]
list3 = [y for y in range(1,10)]
list4 = [" = "]
list5 = [str(x)+a+str(y)+b+str(x*y) for x in list1 for a in list2 for y in list3 for b in list4]
print(list5,"\n")
리스트 어프리헨션으로 구구단 리스트를 만들어봤어요~
g9191hc
작성일
22.02.04 19:37
조회수
169
댓글 0