from datetime import time x = time(hour=20) print(x) 결과값: 20:00:00
from datetime import time
x = time(hour=20)
print(x)
결과값: 20:00:00
from 정의
모듈의 특정 부분만 지정. cf. import 키워드 : 모듈 가져오기 as 키워드 : 별칭 생성.
모듈의 특정 부분만 지정.
cf.
import 키워드 : 모듈 가져오기
as 키워드 : 별칭 생성.
최신댓글