I'm currently learning Python and I'm doing an exercise in which I'm making a weight converter. I keep on running into this issue, can any1 plz help?
weight = int(input("How much do you weigh? "))
unit = input("Was that in (K)gs or (L)bs? ")
if unit == "L" or "l":
converted = weight * 0.45
print("Kgs: {0}".format(converted))
if unit == "K" or "k":
converted = weight / 0.45
print("Lbs: {0}".format(converted))
The terminal just prints both. I have no idea what the problem is.