Skip to content

Commit 35a1f8a

Browse files
committed
strings: + durch * ersetzt.
1 parent 5749f74 commit 35a1f8a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Level_01/strings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# (für mehr Informationen siehe die Wiki-Seite zu Operatoren)
2222
print(f + b)
2323
print(5 * f)
24-
print(5 + (f + " "))
24+
print(5 * (f + " "))
2525

2626
# Daten anderer Typen in Strings umwandeln:
2727
s = str(5)

0 commit comments

Comments
 (0)