Ich bin neu bei Python und lerne gerade Operatoren. Ich verstand, dass:Integer-Division in Python 3 - seltsames Ergebnis mit negativer Zahl
- Der
/
Operator fürfloating point division
verwendet wird und //
fürinteger division
.
Beispiel:
7//3 = 2
Und 7//-3=-3
. Warum ist die Antwort -3
?
Ich bin hier fest.
Siehe auch [Warum Pythons Integer-Divisionsböden] (http://python-history.blogspot.com.by/2010/08/why-pythons-integer-division-floors.html) –