Run
nums = [30, 50, 40, 10, 20, 70, 60] print(f"Given numbers : {nums}") nums.sort() print(f"Sorted numbers : {nums}")
Output