[Python] 파이썬 리스트 ( append/insert/pop/count/sort/reverse/extend/clear )


[Python] 파이썬 리스트 ( append/insert/pop/count/sort/reverse/extend/clear )

# 리스트 [] subway = ["유재석", "조세호", "박명수"] print(subway) #조세호가 몇 번째 칸에 타고 있는가? print(subway.index("조세호")) # 0 1 2 순 #하하가 다음 정류장에서 다음칸에 탐 subway.append("하하..

[Python] 파이썬 리스트 ( append/insert/pop/count/sort/reverse/extend/clear )에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.


원문링크 : [Python] 파이썬 리스트 ( append/insert/pop/count/sort/reverse/extend/clear )