[116] 리스트 제거하기(del)

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

listdata = [2,2,1,3,8,5,7,6,3,6,2,3,9,4,4]
del listdata
print(listdata)

Comments