diff --git a/guide/english/python/data-structures/floating-point-numbers/index.md b/guide/english/python/data-structures/floating-point-numbers/index.md index 7c36901f16..0a193bbf95 100644 --- a/guide/english/python/data-structures/floating-point-numbers/index.md +++ b/guide/english/python/data-structures/floating-point-numbers/index.md @@ -9,7 +9,7 @@ Float objects can be created using using -Likewise, positive float objects can be prefixed with a unary `+ (`plus) operator with no space before the literal. Usually `+` is omitted: +Likewise, positive float objects can be prefixed with a unary `+` (plus) operator with no space before the literal. Usually `+` is omitted: >>> +3.141592653589793 3.141592653589793 @@ -47,7 +47,7 @@ Note that leading and trailing zero(s) are valid for floating point literals >>> 001e0010 # Same as 1e10 10000000000.0 -The `float` constructor is another way to create `float` objects. +The `float` constructor is another way to create `float` objects. Creating `float` objects with floating point literals is preferred when possible: @@ -105,4 +105,4 @@ The `float` constructor can also be used to make numeric representation of `NaN` >>> float('infinity') inf >>> float('-infinity') - -inf \ No newline at end of file + -inf