class Big:
def __init__(self, numbers):
self.numbers = numbers
def biggest(self):
big = self.numbers[0]
for n in self.numbers:
if n > big:
big = n
return big
biger = Big([10, 3, 5, 7, 6])
print(biger.biggest())
To embed this project on your website, copy the following code and paste it into your website's HTML: