Skip to content

Commit d1aae6e

Browse files
committed
fix: use f-string instead
1 parent e4f4082 commit d1aae6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

my_python_exercises.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@
7676
source: str = tempate.substitute(data)
7777
source_lines: List[str] = source.split('\n')
7878
source_lines = [x for x in source_lines if len(x) > 0]
79-
source_lines = map(lambda a: a if str(a).startswith('#') else '# ' + a, source_lines)
80-
source = reduce(lambda a, b: a + '\n' + b, source_lines)
79+
source_lines = map(lambda a: a if str(a).startswith('#') else f'# {a}', source_lines)
80+
source = reduce(lambda a, b: f'{a}\n{b}', source_lines)
8181

8282
source_file_name: str = f'question_{i-1}.py'
8383
with open(os.path.join(dist_dir_name, source_file_name), 'w') as f:

0 commit comments

Comments
 (0)