As a software engineer, you are hired to arrange cricket players based on their country and type. You have given all the player’s information in a tuple called my_tuple. The players are from 3 countries which are Bangladesh, Australia and England. There are 2 types of players which are “Batters” and “Bowlers” You are given the following nested tuple where each element in the my_tuple is a tuple consisting of a name and a 4 digit ID. my_tuple = (("Mominul", 1101),("Mustafiz", 1202),("Bell", 2101),("Cook", 2103),("Smith", 3101),("Finch", 3102),("Starc", 3203), ("Imrul", 1103), ("Taijul", 1204)) Write a python program that will convert this tuple into the following dictionary using the process described below: Your code should work for all types of similar tuple if the sample input is changed. Output dictionary (You just have to print the resultant dictionary. No need to follow the pattern below) { 'Bangladesh': { 'Batters': ('Mominul', 'Imrul'), 'Bowlers': ('Mustafiz', 'Taijul') }, 'England': { 'Batters': ('Bell', 'Cook') }, 'Australia': { 'Batters': ('Smith', 'Finch'), 'Bowlers': 'Starc' } } Here you need to convert the given tuple into the output using the 4 digit ID. The rules are given below: 1==> First digit of the ID represents the country. Here 1a--> 1 means Bangladesh 1b--> 2 means England 1c--> 3 Means Australia 2==> Second digit of the ID represents type. Here 2a--> 1 means Batters 2b--> 2 means Bowlers 3==> If you have multiple players in a category use tuple to store the multiple names as the value of the nested dictionary 4==> If any type is missing from the country, no need to add that type as key in the nested dictionary (e.g: Bowlers is not present as key in the nested dictionary situated in England key) 5==> If your output dictionary’s key value pair sequence is not the same as the shown output you should not worry about that. However, the key value pair should be exactly the same.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
As a software engineer, you are hired to arrange cricket players based on their country and type. You have given all the player’s information in a tuple called my_tuple. The players are from 3 countries which are Bangladesh, Australia and England. There are 2 types of players which are “Batters” and “Bowlers” You are given the following nested tuple where each element in the my_tuple is a tuple consisting of a name and a 4 digit ID. my_tuple = (("Mominul", 1101),("Mustafiz", 1202),("Bell", 2101),("Cook", 2103),("Smith", 3101),("Finch", 3102),("Starc", 3203), ("Imrul", 1103), ("Taijul", 1204)) Write a python program that will convert this tuple into the following dictionary using the process described below: Your code should work for all types of similar tuple if the sample input is changed. Output dictionary (You just have to print the resultant dictionary. No need to follow the pattern below) { 'Bangladesh': { 'Batters': ('Mominul', 'Imrul'), 'Bowlers': ('Mustafiz', 'Taijul') }, 'England': { 'Batters': ('Bell', 'Cook') }, 'Australia': { 'Batters': ('Smith', 'Finch'), 'Bowlers': 'Starc' } } Here you need to convert the given tuple into the output using the 4 digit ID. The rules are given below: 1==> First digit of the ID represents the country. Here 1a--> 1 means Bangladesh 1b--> 2 means England 1c--> 3 Means Australia 2==> Second digit of the ID represents type. Here 2a--> 1 means Batters 2b--> 2 means Bowlers 3==> If you have multiple players in a category use tuple to store the multiple names as the value of the nested dictionary 4==> If any type is missing from the country, no need to add that type as key in the nested dictionary (e.g: Bowlers is not present as key in the nested dictionary situated in England key) 5==> If your output dictionary’s key value pair sequence is not the same as the shown output you should not worry about that. However, the key value pair should be exactly the same.
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY