주 메뉴 열기

wwiki β

Python

Jhkim (토론 | 기여)님의 2019년 12월 8일 (일) 06:24 판 (built in functions)

목차

python2

pip 설치

$ sudo apt install python-pip

패키지 설치

$ python -m pip install 패키지명

python3

https://docs.python.org/ko/3/howto/index.html

pip3 설치

$ apt install python3-pip

패키지 설치

$ sudo pip3 install 패키지명

웹 크롤링

string

built in functions

Dictionary

에러

UnicodeDecodeError: 'ascii' codec can't decode byte

import sys 이후에 다음 코드 추가

reload(sys)
sys.setdefaultencoding('utf-8')