def classify(x): match x: case 0: return 'zero' case int(): return 'int' case _: return 'other' print(classify(5))