I'm new to python coding and I am working on a simple program that converts your years to months, minutes, and seconds. However, when I ask to convert the years to just one of those it responds by sending me the answer to all of the conversions. Can someone look over this and tell me what I did wrong?
Year = int(input("Years: "))
unit = input("Months or Minutes or Seconds: ")
if unit == "Months" or "months":
convert = Year * 12
print(str(convert))
if unit == "Minutes" or "minutes":
convert1 = Year * 525600
print(str(convert1))
if unit == "Seconds" or "second":
convert2 = Year * 31536000
print(str(convert2))