Add usage note.
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst
index 918918c..eb6306f 100644
--- a/Doc/library/itertools.rst
+++ b/Doc/library/itertools.rst
@@ -245,6 +245,10 @@
               yield n
               n += step
 
+   When counting with floating point numbers, better accuracy can sometimes be
+   achieved by substituting multiplicative code such as: ``(start + step * i
+   for i in count())``.
+
    .. versionchanged:: 2.7
       added *step* argument and allowed non-integer arguments.