python 取前几天时间

  作者:会飞的

import timeimport datetime# 定义函数def printime(str): print(str,"天前") # 先获得时间数组格式的日期 dayAgo = (datetime.datetime.now() - datetime.timedelta(days = int(str) )) # 转换为其他字符串格式 otherTime = dayAgo.strftime("%Y-%m-%d %H:%M:%S"

import time

import datetime


# 定义函数

def printime(str):

    print(str,"天前")

    # 先获得时间数组格式的日期

    dayAgo = (datetime.datetime.now() - datetime.timedelta(days = int(str) ))

    # 转换为其他字符串格式

    otherTime = dayAgo.strftime("%Y-%m-%d %H:%M:%S")

    return otherTime;

print(printime(1))

print(printime(2))


有用  |  无用

猜你喜欢