使用 time 库的相关函数获取 3 天前的时间。

使用 time 库的相关函数获取 3 天前的时间。


答案

from time import *
print(ctime(time()-24*60*60))

题目信息

题号:7699
题型:简答题
难度:普通