Source
def
f4
(
x
)
:
print
(
x
)
def
f5
(
msg
,
N
)
:
for
i
in
range
(
N+
1
)
:
print
(
msg
)
f4
(
'hello'
)
f5
(
'hello world!'
,
5
)