Update input_string to s for string examples

This commit is contained in:
Jared
2019-10-08 02:43:58 +00:00
parent 0f6556478c
commit e1c05cd1c1
11 changed files with 28 additions and 28 deletions

View File

@ -8,8 +8,8 @@ Prints out the same string a defined number of times.
Repeat the string `n` times, using the `*` operator.
```py
def n_times_string(input_string, n):
return (input_string * n)
def n_times_string(s, n):
return (s * n)
```
```py