This is a homework.
I’m not looking for answers, just a nudge into the right direction.
Given a list:
['The Boy','1:34','Let go','4:21','Wherever to', '5:30']
I want to be able to sort the list by pairs:
[['The Boy','1:34']['Let go','4:21']['Wherever to', '5:30']]
Difficult without knowing which parts of Python you have been taught so far, but here are some steps that may help
You should use some variables instead of repeating the list over and over of course