Use the knowledge in computational language in python is possible write the data about a function and the summation.
In Python, a function is a sequence of commands that performs some task and that has a name. Its main purpose is to help us organize programs into chunks that correspond to how we envision a solution to the problem.
So in an easier way we have that the code is:
def plus(a,b):
return a + b
class Summation(object):
def sum(self, a, b):
self.contents = a + b
return self.contents
sumInstance = Summation()
sumInstance.sum(1,2)
See more about python at brainly.com/question/18502436