写一段python代码 制作生日贺卡

引入库

import datetime # 定义当前时间 now = datetime.datetime.now() # 定义生日日期 birthday = datetime.datetime(2021,3,3) # 计算时间差 diff = birthday - now # 打印贺卡 print("亲爱的朋友,\n你好!\n距离你的生日还有:" + str(diff.days) + "天\n祝你生日快乐!")

你可能感兴趣的:(写一段python代码 制作生日贺卡)