Login and get codingHere is a list of words Jacob is trying to sort:
>>> words = "It's almost Holidays and PyBites wishes You a Merry Christmas and a Happy 2019".split() >>> sorted(words) ['2019', 'Christmas', 'Happy', 'Holidays', "It's", 'Merry', 'PyBites', 'You', 'a', 'a', 'almost', 'and', 'and', 'wishes']Hmm ... that year goes first. He actually wants words starting with a digit (first character) to go last!
Could you complete the function below to do this for him? So the result would be:
['a', 'a', 'almost', 'and', 'and', 'Christmas', 'Happy', 'Holidays', "It's", 'Merry', 'PyBites', 'wishes', 'You', '2019']By the way, you can submit ideas/needs/wishes for Bites here. Cheers!
See you in the next Bite and keep calm and code in Python!
386 out of 394 users completed this Bite.
Will you be the 387th person to crack this Bite?
Resolution time: ~40 min. (avg. submissions of 5-240 min.)
Our community rates this Bite 3.75 on a 1-10 difficulty scale.
» You can do it! 😌