I am writing a program to convert between pounds and kilograms. 1 kilogram is approximately 2.2 pounds. I want to get user input for their weight and if they input 'l' or 'L' then I will return their weight in pounds and vice versa for kilograms. But my 'elif' statement isn't working. My code keeps doing the math for only the first 'if' statement. However, if I completely delete the first 'if' statement, then the 'elif' statement works. I do not know what's wrong. Please help I am learning Python
weight = input("Enter your weight: ")
option = input("(L)bs or (K)g: ")
if(option == 'L' or 'l'):
actual_weight = float(weight)*2.2
print("You are " + str(actual_weight) + "kilograms")
elif(option == 'K' or 'k'):
actual_weight = float(weight)/ 2.2
print("You are " + str(actual_weight) + "pounds")