Write a program to Return the largest item from the given list
Topic: Write a program to Return the largest item from the given list
Solution
aList = [4, 6, 8, 24, 12, 2] print(max(aList))
List all Python Programs
Solution
aList = [4, 6, 8, 24, 12, 2] print(max(aList))