Let’s start the example; suppose we have a list of strings, and we want to sort a list based on the length of the strings in the list in the ascending order (shortest to longest length). The built-in len() function in python returns the length of the string, so len() can be u...
pythonsortsortingno_library_functionno_list 29th Sep 2021, 5:55 PM Msaligs + 1 What exactly are you trying to do? Is there a specific reason why you don't want to use lists and in-built functions? 29th Sep 2021, 5:59 PM Simon Sauter ...
k = input() li = [] x = len(k) for i in range (0,x): li.append(k[i]) for i in range(0,x): for j in range(0,x): if li[i]
k = input() li = [] x = len(k) for i in range (0,x): li.append(k[i]) for i in range(0,x): for j in range(0,x): if li[i]