설치

pip install [package name]

 

삭제

pip uninstall [package name]

 

업데이트

pip upgrade [package name]

 

설치된 패키지 목록

pip list

 

패키지 정보 확인

pip show [package name]

'[Lang] Python' 카테고리의 다른 글

country code로 timezone 구하기  (0) 2016.11.09
python에서 switch/case 처럼 쓰기  (0) 2016.09.07


다음 패키지를 쓰면 국가코드를 입력으로 넣어 타임존을 알아낼 수 있다.


설치 방법

pip install pytz



참고 링크 및 코드

http://pytz.sourceforge.net/



Country Information

>>> from datetime import datetime, timedelta
>>> from pytz import timezone
>>> import pytz
>>> print(' '.join(pytz.country_timezones['nz']))
Pacific/Auckland Pacific/Chatham

The Olson database comes with a ISO 3166 country code to English country name mapping that pytz exposes as a dictionary:

>>> print(pytz.country_names['nz'])
New Zealand


'[Lang] Python' 카테고리의 다른 글

pip command 리스트  (1) 2019.11.09
python에서 switch/case 처럼 쓰기  (0) 2016.09.07


다음 코드를 사용하면 된다.



def getType(x):

    return {

        0: 'A',

        1: 'B',

        2: 'C'

    }[x]



>>> getType(0)

'A'



'[Lang] Python' 카테고리의 다른 글

pip command 리스트  (1) 2019.11.09
country code로 timezone 구하기  (0) 2016.11.09

+ Recent posts