repeat_string(s, n) that builds and returns s repeated n times concatenated together, using a for loop and string concatenation (do not use the * repetition operator).repeat_string("ab", 3)"ababab"
"ab" concatenated three times.
repeat_string("x", 0)""
Zero repetitions yields an empty string.
Start with an empty result string and loop n times, appending s each time.
range(n) gives you exactly n iterations.