파이썬 detetime 모듈 개념
Python Dates A date in Python is not a data type of its own, but we can import a module named datetime to work with dates as date objects. Date Output When we execute the code from the example above the result will be:2023-04-16 16:12:06.572136 The date contains year, month, day, hour, minute, second, and microsecond. The datetime module has many methods to return information about the date obje..
파이썬
2023. 4. 16. 16:27