We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2c3878d + 234a440 commit 92aec1fCopy full SHA for 92aec1f
modules/40-define-functions/500-named-arguments/index.py
@@ -1,2 +1,2 @@
1
def trim_and_repeat(text, offset=0, repetitions=1):
2
- return f'{text[offset:] * repetitions}'
+ return text[offset:] * repetitions
0 commit comments