We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4f4082 commit d1aae6eCopy full SHA for d1aae6e
my_python_exercises.py
@@ -76,8 +76,8 @@
76
source: str = tempate.substitute(data)
77
source_lines: List[str] = source.split('\n')
78
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)
+ source_lines = map(lambda a: a if str(a).startswith('#') else f'# {a}', source_lines)
+ source = reduce(lambda a, b: f'{a}\n{b}', source_lines)
81
82
source_file_name: str = f'question_{i-1}.py'
83
with open(os.path.join(dist_dir_name, source_file_name), 'w') as f:
0 commit comments