points = 100 def test(): global points points -= 51 test() print(points) if points == 0: print("You lose") elif points != 0: pass elif p