• Source
    1. def f4(x):
    2. print(x)
    3.  
    4. def f5(msg,N):
    5. for i in range(N+1):
    6. print(msg)
    7.  
    8. f4('hello')
    9. f5('hello world!',5)
    10.