What is the program code for this question in python?

The input is terminated by a blank line.You have to write a Python program that reads information about all the matches and compile the following stat

The input is terminated by a blank line.

You have to write a Python program that reads information about all the matches and compile the following statistics for each player:

1.Number of best-of-5 set matches won
2.Number of best-of-3 set matches won
3.Number of sets won
4.Number of games won
5.Number of sets lost
6.Number of games lost

You should print out to the screen (standard output) a summary in decreasing order of ranking, where the ranking is according to the criteria 1-6 in that order (compare item 1, if equal compare item 2, if equal compare item 3 etc, noting that for items 5 and 6 the comparison is reversed).

For instance, given the following data

Djokovic:Murray:2-6,6-7,7-6,6-3,6-1
Murray:Djokovic:6-3,4-6,6-4,6-3
Djokovic:Murray:6-0,7-6,6-7,6-3
Murray:Djokovic:6-4,6-4
Djokovic:Murray:2-6,6-2,6-0
Murray:Djokovic:6-3,4-6,6-3,6-4
Djokovic:Murray:7-6,4-6,7-6,2-6,6-2
Murray:Djokovic:7-5,7-5
Williams:Muguruza:3-6,6-3,6-3

your program should print out the following

Djokovic 3 1 13 142 16 143
Murray 2 2 16 143 13 142
Williams 0 1 2 15 1 12
Muguruza 0 0 1 12 2 15

You can assume that there are no spaces around the punctuation marks ":", "-" and ",". Each player's name will be spelled consistently and no two players have the same name.

or:The input is terminated by a blank line.You have to write a Python program that reads information about all the matches and compile the following statistics for each player:1.\tNumber of best-of-5 set matches won2.\tNumber of best-of-3 set matches won3.\tNumber of sets won4.\tNumber of games won5.\tNumber of sets lost6.\tNumber of games lostYou should print out to the screen (standard output) a summary in decreasing order of ranking, where the ranking is according to the criteria 1-6 in that order (compare item 1, if equal compare item 2, if equal compare item 3 etc, noting that for items 5 and 6 the comparison is reversed).For instance, given the following dataDjokovic:Murray:2-6,6-7,7-6,6-3,6-1Murray:Djokovic:6-3,4-6,6-4,6-3Djokovic:Murray:6-0,7-6,6-7,6-3Murray:Djokovic:6-4,6-4Djokovic:Murray:2-6,6-2,6-0Murray:Djokovic:6-3,4-6,6-3,6-4Djokovic:Murray:7-6,4-6,7-6,2-6,6-2Murray:Djokovic:7-5,7-5Williams:Muguruza:3-6,6-3,6-3your program should print out the followingDjokovic 3 1 13 142 16 143Murray 2 2 16 143 13 142Williams 0 1 2 15 1 12Muguruza 0 0 1 12 2 15You can assume that there are no spaces around the punctuation marks \":\

Tags:information,line,write,question,code,