표준입력 (stdin)
실행옵션 (runtime option)
코드:
실행 »
표준입력/실행옵션
list1 = [1, 2, 3, 4, 5] copy = list1 copy.append(6) print(copy) print(list1)