Programming/Python7 파이썬에서 자료구조(data structure)를 간단하게 다루도록 도와주는 모듈 부스트코스의 "머신러닝을 위한 파이썬" 강좌 필기 내용 https://www.boostcourse.org/ai222/lecture/23091?isDesc=false # 자료구조에 대한 기본적인 모듈을 파이썬에서 제공해주는 라이브러리가 있음 # collections라는 모듈 ### Collections ''' - List, Tuple, Dict에 대한 파이썬 built-in 확장 자료 구조 - 편의성, 실행 효율 등으로 사용자에게 권장됨 - 아래의 모듈이 존재한다 ''' # from collections import deque # from collections import Counter # from collections import OrderedDict # from collections import def.. 2022. 10. 14. 파이쏘닉 Pythonic 코드 쓰는 법 부스트코스의 "머신러닝을 위한 파이썬" 강좌 필기 내용 https://www.boostcourse.org/ai222/joinLectures/28027 # 일반 코드 colors = ["a", "b", "c", "d", "e"] result = "" for s in colors: result += s # print(result) # abcde # pythonic code colors = ["red", "blue", "green", "yellow"] result = "".join(colors) # print(result) # redbluegreenyellow ### Split 함수 '''칸을 기준으로 문자열을 나누어줌''' items = 'zero one two three'.split() # print(it.. 2022. 10. 14. 이전 1 2 다음