Despite what it only run the if condition for all other conditions
inpi = input("Proceed To Download [Yes/No]: ")
if inpi = "yes" or "y" or "Yes":
print("Downloading")
elif inpi == "No" or "no" or "n":
print("something")
else:
print(" here")