Fixed typo

This commit is contained in:
David Beazley
2020-05-29 17:08:59 -05:00
parent 010cc46966
commit b0b7b7cf54

View File

@@ -163,7 +163,7 @@ Try it out.
3 3
>>> b = '3.14159' # It also works with strings containing numbers >>> b = '3.14159' # It also works with strings containing numbers
>>> float(b) >>> float(b)
3.15159 3.14159
>>> >>>
``` ```