Python/공부

자주 사용하는 Python 함수 module

끈끈 2023. 3. 20. 19:27
type()

값의 자료형 확인하기

integer = 10
float_ = 1.23
string = "hello world!!"
list_ = [1, 2, 3]
tuple_ = (1, 2, 3)
set_ = {1, 2, 3}
dictionary = {"key": "value"}
boolean = True

print(type(integer)) # <class 'int'>
print(type(float_)) # <class 'float'>
print(type(string)) # <class 'str'>
print(type(list_)) # <class 'list'>
print(type(tuple_)) # <class 'tuple'>
print(type(set_)) # <class 'set'>
print(type(dictionary)) # <class 'dict'>
print(type(boolean)) # <class 'bool'>

 

split()

string을 list로 변환하기

 

join()

list를 string으로 변환하기

 

replace()

문자열 바꾸기

 

pprint()

예쁘게 출력하기

 

random

 

time

시간 다루기

 

datetime

날짜 다루기

출력된 결과값은 String이 아닌 datetime 클래스이다

https://docs.python.org/ko/3/library/datetime.html#strftime-and-strptime-format-codes

 

datetime — Basic date and time types

Source code: Lib/datetime.py The datetime module supplies classes for manipulating dates and times. While date and time arithmetic is supported, the focus of the implementation is on efficient attr...

docs.python.org