У меня есть синтаксическая ошибка, из-за которой я запутался в своем коде Python
deliveryValue= input("Is this order for delivery? Y/N")
float (DeliveryTime = 0)
str (zipcode=none)
float (DeliveryFee =0)
if deliveryValue == 'y' or 'Y':
address = input ("what is the delivery address?")
zipcode = input ("What zipcode is the address in?")
if zipcode == 84041:
DeliveryTime = 30
DeliveryFee = 6.50
else:
DeliveryTime = 45
DeliveryFee = 7.50
else:
DeliveryFee = 0
, если zipcode == 84041: строка выходит с ошибкой, однако я попытался поместить '' и ""вокруг него и до сих пор есть такая же ошибка.Я правильно это пишу?
Заранее спасибо.