티스토리 뷰
반응형
개발사항
- http://data.pr4e.org/romeo.txt 파일울 오픈한다.
- 파일을 읽어 단어와 해당 단어가 몇 번이나 있는지 카운트하여 화면에 출력한다.
import urllib.request, urllib.parse, urllib.error
fhead = urllib.request.urlopen('http://data.pr4e.org/romeo.txt')
counts = dict()
for line in fhead :
words = line.decode().split()
for word in words :
counts[word] = counts.get(word, 0) + 1
print(counts)
END
반응형
'IT > Python' 카테고리의 다른 글
[Python] BeautifulSoup (0) | 2020.12.01 |
---|---|
[Python] pip를 이용한 패키지 설치 및 업그레이드 (0) | 2020.11.16 |
[Python] 소켓 (0) | 2020.11.14 |
[Python] 정규식을 활용하는 다양한 방법 (0) | 2020.11.14 |
[Python] 정규식을 이용한 패턴 추출 (1) | 2020.11.10 |
댓글
공지사항