Question: Using python...Write a function named sorted that accepts a list of floats as a parameter and returns True if the list is in sorted order
Using python...Write a function named sorted that accepts a list of floats as a parameter and returns True if the list is in sorted order and False if not. For example, if a list named list stores [1.5, 4.3, 7.0, 19.5, 25.1, 46.2] respectively, the call of sorted(list2) should return True. You may assume the list has at least one element. A one-element list is considered to be sorted.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
