def test1(a): print(a) def test0(): print("hi") test1("hello") def test5(a, b, c, d, e): print(a) print(b) print(c) print(d) print(e) test0() test5("a", "b", "c", "d", "e")