2019/01/29 - [Language/Python] - [Python 따라하기]1. Python 설치하기
2019/02/05 - [Language/Python] - [Python 따라하기]2. 자료형_part 1(String, Int,Float, List)
2019/02/12 - [Language/Python] - [Python 따라하기]3. 자료형_part2(Tuple,Set,Dictionary)
2019/02/19 - [Language/Python] - [Python 따라하기]4. 조건문
2019/02/26 - [Language/Python] - [Python 따라하기]5. 반복문(For, While, break, continue)
2019/03/05 - [Language/Python] - [Python 따라하기]6. 함수만들기(def, print, format)
2019/03/12 - [Language/Python] - [Python 따라하기]7. 파일 입출력 (File I/O)
2019/03/19 - [Language/Python] - [Python 따라하기]8. 클래스와 상속(Class, inheritance)
2019/03/26 - [Language/Python] - [Python 따라하기]9. 예외처리(try,except,finally)
유용한 내장 함수 및 외장 함수
내장함수
abs
abs(x)는 어떤 숫자를 입력으로 받았을 때, 그 숫자의 절대값을 돌려주는 함수이다.
chr
divmod
몫을 구하는 연산자 //와 나머지를 구하는 연산자 %로 구한 것과 같다.
filter
map
ord
외장함수
os
os.environ
os.chdir
os.getcwd
glob
datetime
datetime.dateime 클래스
now()에서 생성된 객체들에 대해 다음과 같이 접근할 수 있다.
datetime.datetime에는 여러 메서드들도 제공하지만 그중 strftime()을 자주 사용하는 문자열을 반환해주는 함수이다. 이 메서드는 어떤 형식으로 문자열을 만들지 결정하는 문자열을 인수로 받는다. 자세한 것은 다음 링크에서 확인할 수 있다.
https://docs.python.org/2/library/datetime.html#strftime-and-strptime-behavior
random
randint
random.choice
random.shuffle
'Language > Python' 카테고리의 다른 글
[Python] collections 모듈 (0) | 2021.09.17 |
---|---|
[Python] Functools 모듈 (0) | 2021.07.16 |
[Python 따라하기]9.예외처리(try,except,finally) (0) | 2019.03.26 |
[Python 따라하기]8.클래스와 상속(Class, inheritance) (2) | 2019.03.19 |
[Python 따라하기]7.파일 입출력 (File I/O) (0) | 2019.03.12 |