DAY 10 of PYTHON top 100 questions : from Basic to Advanced !!
Write a Python program to sort a given array in ascending order : a=[2,4,8,1,4,6] a.sort() print("The ascending order ",a) Output : The ascending order [1, 2, 4, 4, 6, 8] The sort() method in Python can be used to sort a list of numbers in ascendi...





