5 lines
67 B
Python
5 lines
67 B
Python
|
|
def repeat(s, times):
|
||
|
|
return s * times
|
||
|
|
|
||
|
|
print(repeat("ha", 5))
|