Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 314 Bytes

File metadata and controls

9 lines (5 loc) · 314 Bytes

Exercise 7.4 Ready Made Sorting Algorithms

Add the following methods to the main program:

  • def sort_integers(integers) that sorts a list of integers.

  • def sort_strings(strings) that sorts a list of strings into alphabetical order.

Be sure to use the ready-made Python libraries in your implementation.