我有一段 Java 代码需要转换为 Python,如下所示:
SimpleDateFormat sdf = new SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss zzz");
sdf.setTimeZone(TimeZone.getTimeZone("GMT"));
String date = sdf.format(new Date());
好的,实现这一点的最终代码是:
import datetime
from pytz import timezone
now = datetime.datetime.now()
gmt_time = now.replace(tzinfo=timezone('GMT'))
date=gmt_time.strftime("%a, %d %b %Y %H:%M:%S %Z")
白衣染霜花
相关分类