python string formatting1 [데이터 분석 및 머신러닝을 위한 python 공부]_9일차 학습 내용- Python Datetime- Python Math- Python JSON- Python RegEx- Python Try...Except- Python String Formatting Python DatetimePython Dates- python 에는 자체적으로 date type 을 갖고 있지 않지만 datetime 이라는 모듈을 불러 작업을 할 수 있다.import datetimex = datetime.datetime.now()print(x) Date Output- datetime 모듈에는 date 객체에 대한 여러 정보를 불러들일 수 있는 method 가 있다.import datetimex = datetime.datetime.now()print(x.year)print(x.strftime.. 2024. 9. 16. 이전 1 다음