gpt4 book ai didi

python - 不支持的操作数类型 - : 'str' and 'datetime.datetime'

转载 作者:行者123 更新时间:2023-12-02 10:34:12 26 4
gpt4 key购买 nike

我正在尝试编写一个 Python 脚本来倒计时我的下一个生日。不幸的是,我不断收到此错误消息,指出

unsupported operand type(s) for -: 'str' and 'datetime.datetime'

如有任何帮助,我们将不胜感激。这是我的代码:

import datetime

birthday = input('Please enter your birthday(mm/dd/yyyy): ')
birthdate = datetime.datetime.strptime(birthday,'%m/%d/%Y').date()

currentDate = datetime.datetime.today()

days = birthday - currentDate
print(days)

最佳答案

您需要使用生日作为日期时间对象,并使用它来代替生日。

birthdate = datetime.datetime.strptime(birthday,'%m/%d/%Y')
currentDate = datetime.datetime.today()

days = birthdate - currentDate

关于python - 不支持的操作数类型 - : 'str' and 'datetime.datetime' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33194152/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com