Ask your own question, for FREE!
Computer Science 15 Online
OpenStudy (anonymous):

Tim is in charge of the upcoming interschool baketball tournamnent. He wants to arrange all of the teams and their members in alphabetical order. Which option will best help him do so? Find Filter Sort

OpenStudy (aq99):

C

OpenStudy (aq99):

@real-rulay

OpenStudy (anonymous):

Whenever I get a question like this that I am not sure of the answer, I write google around and write some code. Clearly the only option which makes sense here is using the sort function. players = 'zbfzc' print players.find('b') #returns the position of b which is the second position of 1 def less_than_f(element): return element < 'f' print filter(less_than_f,players) #strings are imutable so only makes sense to do this on a list players = ['z', 'b', 'f', 'x','c'] players.sort() print players

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!