Contents:
MyClass2
MyClass2.addition()
A whatever-you-are-doing.
a (float) – The a of the system.
b (float) – The b of the system.
Examples
>>> my_object = MyClass2(a = 5, b = 3)
Add a and b.
The sum of a and b.
Float
>>> my_object = MyClass2(a=5, b=3) >>> my_object.addition() 8