commit | bfc644bdbea147b97200fea421a3c1a9ead729f6 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sat Jul 05 23:39:56 2008 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Sat Jul 05 23:39:56 2008 +0000 |
tree | ea4024721ffdca77dfa0f0962aa7406d0a5f9921 | |
parent | 2b968d6187c07aeaa1caf44b14b39e281cd94cb1 [diff] [blame] |
fix no-op in tutorial
diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst index 34d0884..623986e 100644 --- a/Doc/tutorial/datastructures.rst +++ b/Doc/tutorial/datastructures.rst
@@ -252,7 +252,7 @@ for i in [0, 1, 2]: for row in mat: print(row[i], end="") - print + print() In real world, you should prefer builtin functions to complex flow statements. The :func:`zip` function would do a great job for this use case::