From 0ad80d1261e49ed43ae960844fd9abf567612837 Mon Sep 17 00:00:00 2001 From: VrugteVlieg <32683883+VrugteVlieg@users.noreply.github.com> Date: Fri, 4 Sep 2020 09:47:28 +0200 Subject: [PATCH] Update scientific.rst --- source/docs/float/scientific.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/docs/float/scientific.rst b/source/docs/float/scientific.rst index fb9a918..54f3c5c 100644 --- a/source/docs/float/scientific.rst +++ b/source/docs/float/scientific.rst @@ -8,9 +8,9 @@ Returns a float multiplied by the specified power of 10. Syntax ------ -[0-9].e[0-9] +[0-9].e(-)?[0-9] -[0-9].E[0-9] +[0-9].E(-)?[0-9] Example ------- @@ -25,4 +25,4 @@ Example >>> 1.1e3 1100.0 # 1.1 * 10**3 >>> 8e-2 -0.08 # 8 * 10**-2 \ No newline at end of file +0.08 # 8 * 10**-2