用一个例子编写一个 Python 程序来获取当前的日期和时间。例如,在 Python 中,我们有一个日期时间模块来处理或打印当前的日期和时间。在这里,它将显示当前日期。
from datetime import date
today = date.today()
print("Current Date = ", today)
Current Date = 2021-11-06
在 Python 示例中,我们现在使用日期时间来打印当前日期和时间。还使用了时间来格式化日期和时间。
from datetime import datetime
today = datetime.now()
print("Current Date and Time = ", today)
# Formatting Date and Time
dt = today.strftime("%B %d, %Y %H:%M:%S")
print("Current Date and Time = ", dt)