[108] 리스트 반복하기(*)

책 내용에 대한 무단배포 방지를 위해 최소한으로 정리

listdata = list(range(3))
ret = listdata*3
print(ret)

Comments