gpt4 book ai didi

datetime - 如何创建基本时间戳或日期? (Python 3.4)

转载 作者:行者123 更新时间:2023-12-01 21:24:35 24 4
gpt4 key购买 nike

作为初学者,创建时间戳或格式化日期最终比我预想的更具挑战性。有哪些基本示例可供引用?

最佳答案

最终,您希望查看日期时间文档并熟悉格式变量,但这里有一些示例可以帮助您入门:

import datetime

print('Timestamp: {:%Y-%m-%d %H:%M:%S}'.format(datetime.datetime.now()))
print('Timestamp: {:%Y-%b-%d %H:%M:%S}'.format(datetime.datetime.now()))
print('Date now: %s' % datetime.datetime.now())
print('Date today: %s' % datetime.date.today())

today = datetime.date.today()
print("Today's date is {:%b, %d %Y}".format(today))

schedule = '{:%b, %d %Y}'.format(today) + ' - 6 PM to 10 PM Pacific'
schedule2 = '{:%B, %d %Y}'.format(today) + ' - 1 PM to 6 PM Central'
print('Maintenance: %s' % schedule)
print('Maintenance: %s' % schedule2)

输出:

时间戳:2014-10-18 21:31:12

时间戳:2014 年 10 月 18 日 21:31:12

现在日期:2014-10-18 21:31:12.318340

今天日期:2014年10月18日

今天的日期是 2014 年 10 月 18 日

维护:2014 年 10 月 18 日 - 太平洋时间下午 6 点至晚上 10 点

维护:2014 年 10 月 18 日 - 下午 1 点至下午 6 点中部

引用链接:https://docs.python.org/3.4/library/datetime.html#strftime-strptime-behavior

关于datetime - 如何创建基本时间戳或日期? (Python 3.4),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26455616/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com