Skip to content

Commit 5e28d31

Browse files
authored
Merge pull request DjangoGirls#1276 from ktalik/patch-2
Make the indentation instructions more clear
2 parents b187033 + 4f7ab0d commit 5e28d31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/python_introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ if 3 > 2:
683683
print('It works!')
684684
```
685685

686-
Notice how we've indented the next line of code by 4 spaces? We need to do this so Python knows what code to run if the result is true. You can do one space, but nearly all Python programmers do 4 to make things look neat. A single `tab` will also count as 4 spaces.
686+
Notice how we've indented the next line of code by 4 spaces? We need to do this so Python knows what code to run if the result is true. You can do one space, but nearly all Python programmers do 4 to make things look neat. A single Tab will also count as 4 spaces as long as your text editor is set to do so. When you made your choice, don't change it! If you already indented with 4 spaces, make any future indentation with 4 spaces, too - otherwise you may run into problems.
687687

688688
Save it and give it another run:
689689

0 commit comments

Comments
 (0)