Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
Use Python Code to Design BDTeam class and AusTeam class which inherit from CricketTeam class so that the following code provides the expected output. You can not change any of the given code. Do not modify the given parent class. Note: add_player() method in both child classes should work for any number of parameters and assume parameters will be even numbers. class CricketTeam: def __init__(self, name, ranking, continent): self.name = name self.ranking = ranking self.continent = continent def add_player(self, *info): pass def __str__(self): s = f"Name: {self.name}\nRanking: {self.ranking}\nContinent: {self.continent}" return s # Write your codes here. # Do not change the following lines of code. bangladesh = BDTeam("Bangladesh", 7, "South Asia", 1) bangladesh.add_player("Mustafiz", "Bowler", "Mashrafee", "Bowler", "Shakib", "All Rounder", "Tamim", "Batter", "Mahmudullah", "Batter") print('1.------------------------------------') print(bangladesh.asia_cup_status()) print('2.------------------------------------') print(bangladesh) print('3.====================================') australia = AusTeam("Australia", 3, "Oceania", 5) australia.add_player("Batter", "Smith", "All Rounder", "Marsh", "Batter", "David", "Bowler", "Starc", "Bowler", "Hazlewood") print('4.------------------------------------') print(australia.world_cup_status()) print('5.------------------------------------') print(australia) OUTPUT: 1.------------------------------------ Hurray!!! Bangladesh has won 1 Asia Cups!!! 2.------------------------------------ Country Details: Name: Bangladesh Ranking: 7 Continent: South Asia Asia Cup Win:1 Players: Bowler: ['Mustafiz', 'Mashrafee'] All Rounder: ['Shakib'] Batter: ['Tamim', 'Mahmudullah'] 3.==================================== 4.------------------------------------ Hurray!!! Australia has won 5 World Cups!!! 5.------------------------------------ Country Details: Name: Australia Ranking: 3 Continent: Oceania World Cup Win:5 Players: Batter: ['Smith', 'David'] All Rounder: ['Marsh'] Bowler: ['Starc', 'Hazlewood']
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education