File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -593,13 +593,13 @@ This example introduces several new features.
593
593
and ``!= `` (not equal to).
594
594
595
595
* The *body * of the loop is *indented *: indentation is Python's way of grouping
596
- statements. Python does not (yet!) provide an intelligent input line editing
597
- facility, so you have to type a tab or space(s) for each indented line. In
598
- practice you will prepare more complicated input for Python with a text editor;
599
- most text editors have an auto-indent facility. When a compound statement is
600
- entered interactively, it must be followed by a blank line to indicate
601
- completion (since the parser cannot guess when you have typed the last line).
602
- Note that each line within a basic block must be indented by the same amount.
596
+ statements. At the interactive prompt, you have to type a tab or space(s) for
597
+ each indented line. In practice you will prepare more complicated input
598
+ for Python with a text editor; all decent text editors have an auto-indent
599
+ facility. When a compound statement is entered interactively, it must be
600
+ followed by a blank line to indicate completion (since the parser cannot
601
+ guess when you have typed the last line). Note that each line within a basic
602
+ block must be indented by the same amount.
603
603
604
604
* The :func: `print ` function writes the value of the expression(s) it is
605
605
given. It differs from just writing the expression you want to write (as we did
You can’t perform that action at this time.
0 commit comments