#day3
Read more stories on Hashnode
Articles with this tag
Write a Python program to find the largest element in an array : a=[56,78,34,90,23,56,34] a.sort() print("The largest element is",a[-1]) Output: The...