📜  如何在 python 中使用 time.time() 将天数转换为秒数 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:06.099000             🧑  作者: Mango

代码示例1
days = input("Number of days\n")
seconds = days * 24 * 60 * 60 # your answer :)
print(seconds) # you can check this by printing, if you want...