My code doesn't work as it always goes through the if
section even when "K" or "k" is typed.
Weight = int(input("What's your weight?"))
Unit = input('Type "L" for lbs, "K" for kilograms: ')
if Unit == "L" or "l":
print(f' You are {Weight / 2.205} Kilograms!')
elif Unit == "K" or "k":
print(f' You are {Weight * 2.205} pounds!')
else:
print('You can only type "L", "l", "K" or "k".')
When you type your weight in kilograms it goes thru if section. I just started your help is much appreciated.