summaryrefslogtreecommitdiffhomepage
path: root/de-de/python3-de.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'de-de/python3-de.html.markdown')
-rw-r--r--de-de/python3-de.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/de-de/python3-de.html.markdown b/de-de/python3-de.html.markdown
index b313727c..c383d742 100644
--- a/de-de/python3-de.html.markdown
+++ b/de-de/python3-de.html.markdown
@@ -555,7 +555,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