I see that your __init__
method is misspelled, but you're gonna want an instance to work with. You have a calculating
class, but no object. Instantiate the class:
mycalc = calculating()
...then use the method (mycalc.addition
). Also, its good practice in python for classes to start with a capital letter. So calculating
should be called Calculating
instead.