Python developer course, working with lists, relay race practice
Iām completing the Python developer course, and Iām in the section working with lists, in the problem relay race practice. I canāt spot the bug in my code. Hereās my code: players = ["Alice","Bob","Charlie","David","Eve","Frank"] #Create 3 lists with 2 players each #Use slicing to create a list for Group 1 g1 = players[0:2] #Use slicing to create a list for Group 2 g2 = players[2:4] #Use slicing to create a list for Group 3 g3 = players[4:6] print("Group 1:",g1) #display the 1st group print("Group 2:",g2) #display the 2nd group print("Group 3:",g3) #display the 3rd group Hereās my output: Group 1: [āAliceā , āBobā] Group 2: [āCharlieā , āDavidā] Group 3: [āEveā , āFrankā] Hereās what Sololearn says is the expected solution: Group 1: [āAliceā , āBobā] Group 2: [āCharlieā , āDavidā] Group 3: [āEveā , āFrankā] I canāt move on because it continues to tell me this is wrong.