我已经在StackExchange上搜索了很多解决方案,但是没有任何事情可以满足我的需要。在JavaScript中,我使用以下代码计算自1970年1月1日以来的UTC时间:
function UtcNow() {
var now = new Date();
var utc = Date.UTC(now.getUTCFullYear(), now.getUTCMonth(), now.getUTCDate(), now.getUTCHours(), now.getUTCMinutes(), now.getUTCSeconds(), now.getUTCMilliseconds());
return utc;
}
等效的Python代码是什么?