Take an integer List of 10 numbers in python
Write logic to find biggest element in that List.
Note: you should not use any predefined function or mechanism which
automatically finds biggest element, like max() function. You have to write
your own logic.
Solution :
Code In Python
mylist = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
bigest = max(mylist)
print(bigest)