here is my code:
weight = input('Weight: ')
unit = input('(L)bs or (K)g: ')
if unit.upper() == "L":
lbs = int(weight) * 0.45
print(lbs)
else unit.upper() == "K":
kg = int(weight) * 2.205
print(kg)
here is the error i get in terminal
File "C:\Users\User\Downloads\projectfc\fctest.py", line 7
else unit.upper() == "K":
^^^^
SyntaxError: expected ':'
why am i getting the error? why only on my "else" statment and not on my "if" statement?