2016-08-07 20 views
2

ich einen Code wie diese:Wie verwendet man truediv für Klassen in python3?

# Imports 
from __future__ import print_function 
from __future__ import division 
from operator import add,sub,mul,truediv 


class Vector: 
    def __init__(self, a, b): 
     self.a = a 
     self.b = b 

    def __str__(self): 
     return 'Vector (%d, %d)' % (self.a, self.b) 

    def __add__(self,other): 
     return Vector(self.a + other.a, self.b + other.b) 

    def __sub__(self,other): 
     return Vector(self.a - other.a, self.b - other.b) 

    def __mul__(self,other): 
     return Vector(self.a * other.a, self.b * other.b) 

    # __div__ does not work when __future__.division is used 
    def __truediv__(self, other): 
     return Vector(self.a/other.a, self.b/other.b) 

v1 = Vector(2,10) 
v2 = Vector(5,-2) 
print (v1 + v2) 
print (v1 - v2) 
print (v1 * v2) 
print (v1/v2) # Vector(0,-5) 

print(2/5) # 0.4 
print(2//5) # 0 

Ich erwarte Vektor (0,4, -5) anstelle von Vektor (0, -5), wie kann ich das erreichen?

einige nützliche Links:
https://docs.python.org/2/library/operator.html
http://www.tutorialspoint.com/python/python_classes_objects.htm

+1

Wenn Sie in Python 3 sind, brauchen Sie diese zukünftigen Import nicht – Copperfield

Antwort

4

Der Wert korrekt ist, aber der Druck ist falsch, weil Sie das Ergebnis int hier sind Gießen:

def __str__(self): 
    return 'Vector (%d, %d)' % (self.a, self.b) 
    #    ---^--- 

Sie können es ändern zu:

def __str__(self): 
    return 'Vector ({0}, {1})'.format(self.a, self.b) 

und das wird gedruckt:

Vector (0.4, -5.0)