코드 예제 myList=[30,10,20] print("현재의 리스트 : %s" % myList) myList.append(40) print("append(40) 후의 리스트 : %s" % myList) myList.pop() print(&quo…