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