93.7k views
3 votes
Def check_sorted(numbers):

"""
-------------------------------------------------------
Determines whether a list is sorted.
Use: in_order, index = check_sorted(numbers)
-------------------------------------------------------
Parameters:
numbers - a list of numbers (list)
Returns:
in_order - True if numbers is sorted, False otherwise (bool)
index - index of first value not in order,
-1 if in_order is True (int)
------------------------------------------------------
"""
Add the function to a PyDev module named functions.py. Test it from

1 Answer

5 votes

Final answer:

The given function, check_sorted(), is designed to check whether a list of numbers is sorted. It takes a list of numbers as a parameter and returns two values: in_order (a boolean indicating whether the list is sorted) and index (the index of the first value not in order, or -1 if the list is sorted).

Step-by-step explanation:

The given function, check_sorted(), is designed to check whether a list of numbers is sorted. It takes a list of numbers as a parameter and returns two values: in_order (a boolean indicating whether the list is sorted) and index (the index of the first value not in order, or -1 if the list is sorted).

To use the function, you should first define it in a PyDev module named functions.py. Then, you can test it by calling the function with a list of numbers.

User Smcg
by
7.8k points