Introduction
In this lab, you will learn how to check if a list is sorted in descending order in Python. The lab begins by introducing the concept of descending order and its importance in sorting lists. You'll start with an unsorted list of numbers and then explore different methods to determine if a list is sorted in descending order.
The lab then guides you through a method involving reversing a list and checking if the reversed list is in ascending order. This approach helps to solidify the understanding of the relationship between ascending and descending order and how to manipulate lists in Python. You will learn how to use the reverse()
method to modify the original list and observe the reversed order.