To make debug output more understandable, you often separate sets of logs by a single line of the same character. Since you use this method very often, you'd like to write a function that would handle printing the separator.
Implement a function that, given a character ch and the number of times it should be repeated n, returns a string of n characters ch.
Example
For ch = '*' and n = 20, the output should be
solution(ch, n) = "********************".
Input/Output
-
[execution time limit] 4 seconds (py3)
-
[input] char ch
The character that should be repeated.
-
[input] integer n
The number of times the given character should be repeated.
Guaranteed constraints:
1 ≤ n ≤ 100. -
[output] string
A string consisting of
ncharactersch.
solution = lambda ch, n: ch * n