commit | 35f8861386794a823dfdbee3035f8ef00f0deddd | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun Jan 06 22:05:40 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Sun Jan 06 22:05:40 2008 +0000 |
tree | 18703538b5c016611a9db2854a93073681c23ffa | |
parent | e9766c8acb6940274a21cf24e61808f6acfcf1e4 [diff] [blame] |
Add tutorial section about coding style.
diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 3bbe53a..5e027a0 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst
@@ -578,8 +578,8 @@ ... # the sum of two elements defines the next ... a, b = 0, 1 >>> while b < 10: - ... print b - ... a, b = b, a+b + ... print b + ... a, b = b, a+b ... 1 1