We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e1f4bd7 + d63998e commit 6bbab17Copy full SHA for 6bbab17
Level_04/Lösungen/monty_a.py
@@ -64,6 +64,6 @@
64
# Buchstabenhäufigkeiten:
65
file_obj = path_chars.open("w")
66
for char, count in char_count.items():
67
- line = "{char};{count}\n"
+ line = f"{char};{count}\n"
68
file_obj.writelines([line])
69
file_obj.close()
0 commit comments