Skip to content

Commit 61a2ae1

Browse files
authored
guide.md: remove space after comma in 'Basic Loop Challenges' (#453)
1 parent 784512d commit 61a2ae1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

_extras/guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ concatenate strings using a plus sign. For example, `print(string1 + string2)` o
486486

487487
~~~
488488
for creature in animals:
489-
print(creature+', ', end='')
489+
print(creature + ',', end='')
490490
~~~
491491
{: .language-python}
492492

0 commit comments

Comments
 (0)