MyClass2# class my_first_ph3_package.MyClass2(a: float, b: float)[source]# A whatever-you-are-doing. Parameters: a (float) – The a of the system. b (float) – The b of the system. Examples >>> my_object = MyClass2(a = 5, b = 3) addition() → float[source]# Add a and b. Returns: The sum of a and b. Return type: Float Examples >>> my_object = MyClass2(a=5, b=3) >>> my_object.addition() 8