@@ -48,7 +48,7 @@ Example: ``math.ceil(0.1)``
4848 ...
4949
5050def copysign (x : float , y : float ) -> float :
51- """Berechne ``x`` mit dem Vorzeichen von ``y``.
51+ """Berechnet ``x`` mit dem Vorzeichen von ``y``.
5252
5353Example: ``math.copysign(1, -1)``
5454
@@ -103,7 +103,7 @@ Example: ``math.floor(0.9)``
103103 ...
104104
105105def fmod (x : float , y : float ) -> float :
106- """Berechne den Rest von ``x/y``.
106+ """Berechnet den Rest von ``x/y``.
107107
108108Example: ``math.fmod(10, 3)``
109109
@@ -143,7 +143,7 @@ Example: ``math.isinf(float('-inf'))``
143143 ...
144144
145145def isnan (x : float ) -> bool :
146- """Prüft, ob ein Wert keine Zahl (NaN .. . Not A Number) ist.
146+ """Prüft, ob ein Wert keine Zahl (NaN bzw . Not A Number) ist.
147147
148148Example: ``math.isnan(float('nan'))``
149149
@@ -152,7 +152,7 @@ Example: ``math.isnan(float('nan'))``
152152 ...
153153
154154def ldexp (x : float , exp : int ) -> float :
155- """Berechne ``x * (2**exp)``.
155+ """Berechnet ``x * (2**exp)``.
156156
157157Example: ``math.ldexp(0.5, 2)``
158158
@@ -176,7 +176,7 @@ With two arguments, return the logarithm of x to the given base, calculated as `
176176 ...
177177
178178def modf (x : float ) -> Tuple [float , float ]:
179- """Berechne die gebrochenen und ganzzahligen Teile von ``x``.
179+ """Berechnet die gebrochenen und ganzzahligen Teile von ``x``.
180180
181181Example: ``fractional, integral = math.modf(1.5)``
182182
@@ -241,6 +241,6 @@ Example: ``math.trunc(-0.9)``
241241:return: ``x`` rounded towards zero."""
242242 ...
243243e : float
244- """Basis des natürlichen Logarithmus"""
244+ """Basis des natürlichen Logarithmus. """
245245pi : float
246- """Das Verhältnis des Umfangs eines Kreises zu seinem Durchmesser"""
246+ """Das Verhältnis des Umfangs eines Kreises zu seinem Durchmesser. """
0 commit comments