1 2 3 4 5
def fun_a(): print("hello world") def fun_b(x: int): print(f"hello {x}") fun_a() fun_b(123)