#! /usr/bin/env python import random # Sorted list of integers list_of_integers = list(range(1, 10)) # List of integers with randomized order random.shuffle( list_of_integers ) # Example of sorted list # print( sorted(list_of_integers) ) # --------------------------------------------------------------- # # Task: # Use the list of integers with randomized order: 'list_of_integers' # and sort it from smallest to biggest integer, programatically, without using in-built sorting functions # # On the standard output print the randomized list once, print 2x newline, print the sorted list once. Nothing else. # # ---------------------------------------------------------------