Having trouble understanding what's wrong with my code. It keeps printing out the additional_discount value regardless of the input for student_status. seen here is the code
def discount(x):
return x * .9
def additional_discount(x):
return discount(x) * .95
og_price = float(input("Please enter your current price in dolalrs: "))
student_status = str(input("Are you a student? "))
if student_status == "Yes" or "yes"
print("Your price is ", additional_discount(og_price))
elif student_status == "No" or "no":
print("Your price is ", discount(og_price))
else:
print("I'm sorry, that is an invalid response")
Thank you!