diff options
Diffstat (limited to 'Doc/howto/doanddont.rst')
-rw-r--r-- | Doc/howto/doanddont.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/howto/doanddont.rst b/Doc/howto/doanddont.rst index 07652bc..ace5bed 100644 --- a/Doc/howto/doanddont.rst +++ b/Doc/howto/doanddont.rst @@ -276,9 +276,9 @@ This cute little script prints the average of all numbers given on the command line. The :func:`reduce` adds up all the numbers, and the rest is just some pre- and postprocessing. -On the same note, note that :func:`float`, :func:`int` and :func:`long` all -accept arguments of type string, and so are suited to parsing --- assuming you -are ready to deal with the :exc:`ValueError` they raise. +On the same note, note that :func:`float` and :func:`int` accept arguments of +type string, and so are suited to parsing --- assuming you are ready to deal +with the :exc:`ValueError` they raise. Using Backslash to Continue Statements |