Python Date strftime() 方法
strftime() 方法
datetime
对象具有将日期对象格式化为可读字符串的方法。
该方法称为strftime()
,并采用一个参数format
来指定格式 返回的字符串:
实例
Display the name of the month:
import datetime
x = datetime.datetime(2018, 6, 1)
print(x.strftime("%B"))
亲自试一试 »
datetime
对象具有将日期对象格式化为可读字符串的方法。
该方法称为strftime()
,并采用一个参数format
来指定格式 返回的字符串:
Display the name of the month:
import datetime
x = datetime.datetime(2018, 6, 1)
print(x.strftime("%B"))
亲自试一试 »
如果您发现内容有误或提出修改建议,请随时向我们发送 E-mail 邮件:
421660149@qq.com
您的建议已发送到 W3schools。