diff options
Diffstat (limited to 'Doc/library/bisect.rst')
-rw-r--r-- | Doc/library/bisect.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/bisect.rst b/Doc/library/bisect.rst index 114300e..9e77699 100644 --- a/Doc/library/bisect.rst +++ b/Doc/library/bisect.rst @@ -64,7 +64,7 @@ Examples The :func:`bisect` function is generally useful for categorizing numeric data. This example uses :func:`bisect` to look up a letter grade for an exam total (say) based on a set of ordered numeric breakpoints: 85 and up is an 'A', 75..84 -is a 'B', etc. :: +is a 'B', etc. >>> grades = "FEDCBA" >>> breakpoints = [30, 44, 66, 75, 85] |