def add(a, b): """ Return the sum of a and b. >>> add(2, 3) 5 >>> add(-1, 1) 0 """ return a + b
try: future.build() except Fear as e: face(e) continue in python code
def log(level, *messages, **metadata): print(f"[level.upper()]", *messages, metadata) def add(a, b): """ Return the sum of a and b