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
'Python > 공부' 카테고리의 다른 글
파이썬 isdecimal(), isdigit(), isnumeric() (2) | 2023.03.24 |
---|---|
파이썬 itertools 함수 iterator의 종류 (0) | 2023.03.23 |
파이썬 함수(function)와 메서드(method)의 차이 (2) | 2023.03.22 |
파이썬 return break continue range() enumerate() items() (0) | 2023.03.21 |
파이썬 문법 공부 TIL/TIA (0) | 2023.03.20 |