open_in_new
content_copy
def divide(a, b): assert b != 0 print(f"{a} / {b} = {a/ b}") divide(10, 2) divide(10, 0)