Python Program to find the sum of first 10 natural numbers using class


In this program, you will learn how to find the sum of the first 10 natural numbers using class in Python.


Some natural numbers list: 1 2 3 4 5 6 7 8 9 11 12 13

Example: How to find the sum of first 10 natural numbers using class in Python

class Test:

    def findsum(self):
        s = 0
        for i in range(1, 11):
            s = s + i
        print("Sum of first 10 natural numbers:", s)


obj = Test()
obj.findsum()

Output:

Sum of first 10 natural numbers: 55