def label(number: float)-> str: return "Win" if number > 0 else "Lose" print(label(0.1)) #output #"Win"