Priya Chakrabortypriyachakraborty.hashnode.devยทApr 18, 2023DAY 3 of PYTHON top 100 questions : from Basic to Advanced !!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 maximum element is 90 The given code sorts the list a in ascending order and then prints the larges...41 readsarrayComments disabledThe comments have been disabled by the author for this article.