+ 2
how to sort the words alphabetically?
Try to write a code to sort the words alphabetically with your programming language For example: myList = ['Stem', 'Python', 'Java', 'Flax', 'Word', 'String'] print (sorted(myList )) Out: ['Flax', 'Java', 'Python', 'Stem', 'String', 'Word'] https://code.sololearn.com/cjcTQEETiqzR
1 Antwort
+ 2
That is not a challenge: it's a language comparison.