summaryrefslogtreecommitdiffhomepage
path: root/de-de/python-de.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'de-de/python-de.html.markdown')
-rw-r--r--de-de/python-de.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/de-de/python-de.html.markdown b/de-de/python-de.html.markdown
index ae29d6f9..d3e0fc26 100644
--- a/de-de/python-de.html.markdown
+++ b/de-de/python-de.html.markdown
@@ -442,7 +442,7 @@ Human.grunt() #=> "*grunt*"
# Wir können Module importieren
import math
-print math.sqrt(16) #=> 4
+print math.sqrt(16) #=> 4.0
# Wir können auch nur spezielle Funktionen eines Moduls importieren
from math import ceil, floor