File size: 342 Bytes
778d7a6 |
1 2 3 4 5 6 7 8 9 |
from datetime import datetime
current_time = datetime.utcnow().strftime('%a, %d %b %Y %H:%M:%S GMT')
print(current_time) # 输出样例: Sat, 04 Jan 2025 16:04:59 GMT
from email.utils import formatdate
current_time = formatdate(timeval=None, localtime=False, usegmt=True)
print(current_time) # 输出样例: Sat, 04 Jan 2025 16:04:59 GMT
|