在Python中,日期的格式化输出是一个常见的任务,可以使用datetime模块来完成。datetime模块提供了一系列函数和类,可以用来处理日期和时间。
我们需要从datetime模块中导入datetime类:
from datetime import datetime
我们可以使用datetime类创建一个datetime对象:
date = datetime.now()
此时,date变量中就保存了当前日期和时间。我们可以使用strftime()方法来格式化日期:
formatted_date = date.strftime('%Y-%m-%d %H:%M:%S')
strftime()方法接受一个格式化字符串作为参数,其中的字符串可以由一些特殊字符组成,比如:
上面的代码将date变量中的日期格式化为“YYYY-MM-DD HH:MM:SS”格式,并将结果保存到formatted_date变量中。
当然,我们也可以使用datetime类的其他方法来格式化日期,比如:
我们还可以使用time模块中的strftime()方法来格式化日期:
import time
formatted_date = time.strftime('%Y-%m-%d %H:%M:%S')
time模块中的strftime()方法接受的参数和datetime模块中的strftime()方法相同,都可以用来格式化日期。
在Python中,我们可以使用datetime模块中的datetime类和strftime()方法,或者time模块中的strftime()方法来格式化日期,以便更好地显示日期。
本文链接:http://task.lmcjl.com/news/8864.html