autopep8 cleanup of Examples/python whitespace
automated cleanup only of the Examples/python example code
This commit is contained in:
parent
9086eb351c
commit
7770715457
40 changed files with 264 additions and 323 deletions
|
|
@ -1,21 +1,20 @@
|
|||
# Operator overloading example
|
||||
import example
|
||||
|
||||
a = example.Complex(2,3)
|
||||
b = example.Complex(-5,10)
|
||||
a = example.Complex(2, 3)
|
||||
b = example.Complex(-5, 10)
|
||||
|
||||
print "a =",a
|
||||
print "b =",b
|
||||
print "a =", a
|
||||
print "b =", b
|
||||
|
||||
c = a + b
|
||||
print "c =",c
|
||||
print "a*b =",a*b
|
||||
print "a-c =",a-c
|
||||
print "c =", c
|
||||
print "a*b =", a * b
|
||||
print "a-c =", a - c
|
||||
|
||||
e = example.ComplexCopy(a-c)
|
||||
print "e =",e
|
||||
e = example.ComplexCopy(a - c)
|
||||
print "e =", e
|
||||
|
||||
# Big expression
|
||||
f = ((a+b)*(c+b*e)) + (-a)
|
||||
print "f =",f
|
||||
|
||||
f = ((a + b) * (c + b * e)) + (-a)
|
||||
print "f =", f
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue