tuple1 [Python] 기초 문법 -2 list,dictionaries,sets and tuples Container 파이썬에 존재하는 내장된 container type 은 List, DIctionary, Set, Tuple이 있다. https://docs.python.org/3.5/tutorial/datastructures.html#more-on-lists List ( 위의 링크를 보면 리스트로 스택, 큐 둘다 사용 가능.) 파이썬에서의 List는 Array와 같지만 Linked-list처럼 resizable 하다. 거기에다가 다른 종류의 element를 넣을 수 있다고 한다. index에 -가 있다. 하.. 무근본언어 인가;; arr[n]이면 arr[-n)]이 가능하다. -1을 하면 맨 뒤의 index를 가져온다. revese 를 통해서 list 내용 뒤집기, count를 통해서 li.. 2021. 1. 12. 이전 1 다음 728x90