Ad
Code
Diff
  • def larger_than_5(a):
        return a > 5
    • def larger_than_5(a):
    • return True if a > 5 else False
    • return a > 5