Python 리스트 append()

1 개요[ | ]

파이썬 append()
Python
Copy
fruits = ['yellow', 'blue', 'green']
fruits.insert(0, "red")
print( fruits ) # ['red', 'yellow', 'blue', 'green']
Loading

2 같이 보기[ | ]