python输入年份与该年中的第几天,得出这天是该年的几月几日?

python3版本

import datetime

def get_date(num1,num2):

    now_time = datetime.datetime(num1, int('01'), int('01'))

    f = now_time + datetime.timedelta(days=num2-1)

    fu = f.strftime('%Y%m%d')

    print(fu)

get_date(2012,60)

你可能感兴趣的:(python基础知识,python)