Knowledge Map
텍스트 파일 읽어오기 및 슬라이싱 본문
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | # 파일을 읽어와서 4가지 자료형으로 저장하기. # 1. 읽어오기 file = open('testtest','r',encoding='utf-8') str = file.read() listkey = str.split('\n') setkey = set(str.split('\n')) tuplekey = tuple(str.split('\n')) print(listkey) listkeyTest = [] for i in listkey: listkeyTest.append(i.split(':')) print(listkeyTest) print() print(listkeyTest) dictkey = dict(listkeyTest) print(dictkey) dic = {} for i in listkey: print(i) print(type(i)) a = i[:i.find(':')] print('i.find = ',i.find(':')) b = i[i.find(':'):] dic[a] = b print(dic) | cs |
find함수를 써서 지정한 다음에 string의 : 를 이용해서 전, 후를 잘라서 읽어오는 것.
웹 크롤링에 적용 하면 좋다!
'PYTHON' 카테고리의 다른 글
pip upgrade (0) | 2016.04.16 |
---|---|
크롤링_python2 (0) | 2016.04.11 |
파이썬 강의 필기 2일차 (0) | 2016.04.10 |
파이썬 한글 정규표현식 (0) | 2016.04.05 |
파이썬 강의 필기 1일차 (0) | 2016.04.03 |
Comments