Help me asap and please use python Implement the HogwartsQuidditchSquad class derived from the Squad class with necessary variables and methods so that the expected output is generated. Do not change...


Help me asap and please use python


Implement the HogwartsQuidditchSquad class derived from the Squad class with necessary variables and methods so that the expected output is
generated. Do not change any given code. [Hint: In order to form a squad, you need at least 5 members. And in order  to form a perfect squad you need 2 beaters, 1 seeker, 1 chaser and 1  keeper. ]


class Squad:
     playerCount=0
     def __init__(self,name,squadType):
         self.name = name
         self.squadType = squadType
     def formSquad(self):
         if Squad.playerCount >= 5:
             return True
         else:
             return False
     def __str__(self):
         s = f"{self.name} is a {self.squadType} team.\n"
         s+= f"Number of players in {self.name} is {Squad.playerCount}\n"
         return s


#Write your code here
f = HogwartsQuidditchSquad("Hogwart's Dragons","Quidditch")
f.addPlayer(["Harry Potter","Seeker","Gryffindor"],["Katie
Bell","Chaser","Gryffindor"])
print("1.====================================")
print(f)
print("2.====================================")
f.formSquad()
print("3.====================================")
f.addPlayer(["Vincent Crabbe","Beater","Slytherin"])
f.addPlayer(["Miles Bletchley","Keeper","Slytherin"])
print("4.====================================")
print(f)
print("5.====================================")
f.formSquad()
print("6.====================================")
f.addPlayer(["Ethan Humberstone","Keeper","Hufflepuff"])
f.formSquad()
print("7.====================================")
f.addPlayer(["Fred Weasley","Beater","Gryffindor"])
print(f)
print("8.====================================")
f.formSquad()




Output:
1.====================================
Hogwart's Dragons is a Quidditch team.
Number of players in Hogwart's Dragons is 2
The Players are:
Seeker:
Player name: Harry Potter, House: Gryffindor
Chaser:
Player name: Katie Bell, House: Gryffindor
2.====================================
We do not have enough players to form a squad.
3.====================================
4.====================================
Hogwart's Dragons is a Quidditch team.
Number of players in Hogwart's Dragons is 4
The Players are:
Seeker:
Player name: Harry Potter, House: Gryffindor
Chaser:
Player name: Katie Bell, House: Gryffindor
Beater:
Player name: Vincent Crabbe, House: Slytherin
Keeper:
Player name: Miles Bletchley, House: Slytherin
5.====================================
We do not have enough players to form a squad.
6.====================================
We have enough players to form a squad.
But we cannot form a perfect squad.
7.====================================
Hogwart's Dragons is a Quidditch team.
Number of players in Hogwart's Dragons is 6
The Players are:
Seeker:
Player name: Harry Potter, House: Gryffindor
Chaser:
Player name: Katie Bell, House: Gryffindor
Beater:
Player name: Vincent Crabbe, House: Slytherin
Player name: Fred Weasley, House: Gryffindor
Keeper:
Player name: Miles Bletchley, House: Slytherin
Player name: Ethan Humberstone, House: Hufflepuff
8.====================================
We have enough players to form a squad.
Also we can form a perfect squad!!


Implement the HogwartsQuidditchSquad class derived from the Squad class<br>with necessary variables and methods so that the expected output is<br>generated. Do not change any given code.<br>[Hint: In order to form a squad, you need at least 5 members. And in order<br>to form a perfect squad you need 2 beaters, 1 seeker, 1 chaser and 1<br>keeper. ]<br>class Squad:<br>playerCount=0<br>def_init_(self,name.squadType):<br>self.name = name<br>self.squadType = squadType<br>def formSquad(self):<br>if Squad.playerCount >= 5:<br>return True<br>else:<br>return False<br>def_str_(self):<br>s= f'{self.name} is a (self.squadType) team.In

Extracted text: Implement the HogwartsQuidditchSquad class derived from the Squad class with necessary variables and methods so that the expected output is generated. Do not change any given code. [Hint: In order to form a squad, you need at least 5 members. And in order to form a perfect squad you need 2 beaters, 1 seeker, 1 chaser and 1 keeper. ] class Squad: playerCount=0 def_init_(self,name.squadType): self.name = name self.squadType = squadType def formSquad(self): if Squad.playerCount >= 5: return True else: return False def_str_(self): s= f'{self.name} is a (self.squadType) team.In" s+= F'Number of players in {self.name} is (Squad.playerCount}\n" return s #Write your code here f = HogwartsQuidditchSquad("Hogwart's Dragons","Quidditch") f.addPlayer(["Harry Potter"."Seeker", "Gryffindor").["Katie Bell","Chaser","Gryffindor"]) print("1. print(f) print("2.== f.formSquad() print("3.====E= f.addPlayer(["Vincent Crabbe", "Beater". "Slytherin") f.addPlayer(["Miles Bletchley", "Keeper", "Slytherin']) print("4.=== print(f) print("5.=== =====") f.formSquad() print("6.====== f.addPlayer(["Ethan Humberstone","Keeper", "Hufflepuff") f.formSquad() ====="} print("7.======== =====") f.addPlayer(["Fred Weasley","Beater", "Gryffindor")) print(f) print("8.=== ===") f.formSquad()
Output:<br>1.===<br>Hogwart's Dragons is a Quidditch team.<br>Number of players in Hogwart's Dragons is 2<br>The Players are:<br>Seeker:<br>Player name: Harry Potter, House: Gryffindor<br>Chaser.<br>Player name: Katie Bell, House: Gryffindor<br>2==============<br>%3%=====<br>We do not have enough players to form a squad.<br>3.=============================<br>=====<br>4.=======<br>===============<br>Hogwart's Dragons is a Quidditch team.<br>Number of players in Hogwart's Dragons is 4<br>The Players are:<br>Seeker:<br>Player name: Harry Potter, House: Gryffindor<br>Chaser.<br>Player name: Katie Bell, House: Gryffindor<br>Beater:<br>Player name: Vincent Crabbe, House: Slytherin<br>Кeeper.<br>Player name: Miles Bietchley. House: Slytherin<br>5.====================================<br>We do not have enough players to form a squad.<br>6.=============================<br>We have enough players to fom a squad.<br>But we cannot form a perfect squad.<br>7.==================---I------<br>%3==<br>Hogwart's Dragons is a Quidditoh team.<br>Number of players in Hogwart's Dragons is 6<br>The Players are:<br>Seeker:<br>Player name: Harry Potter, House: Gryffindor<br>Chaser.<br>Player name: Katie Bell, House: Gryffindor<br>Beater:<br>Player name: Vincent Crabbe, House: Siytherin<br>Player name: Fred Weasley. House: Gryffindor<br>Кeeper.<br>Player name: Miles Bletchley. House: Slytherin<br>Player name: Ethan Humberstone, House: Hufflepuff<br>8.====================================<br>We have enough players to form a squad.<br>Also we can form a perfect squad!<br>

Extracted text: Output: 1.=== Hogwart's Dragons is a Quidditch team. Number of players in Hogwart's Dragons is 2 The Players are: Seeker: Player name: Harry Potter, House: Gryffindor Chaser. Player name: Katie Bell, House: Gryffindor 2============== %3%===== We do not have enough players to form a squad. 3.============================= ===== 4.======= =============== Hogwart's Dragons is a Quidditch team. Number of players in Hogwart's Dragons is 4 The Players are: Seeker: Player name: Harry Potter, House: Gryffindor Chaser. Player name: Katie Bell, House: Gryffindor Beater: Player name: Vincent Crabbe, House: Slytherin Кeeper. Player name: Miles Bietchley. House: Slytherin 5.==================================== We do not have enough players to form a squad. 6.============================= We have enough players to fom a squad. But we cannot form a perfect squad. 7.==================---I------ %3== Hogwart's Dragons is a Quidditoh team. Number of players in Hogwart's Dragons is 6 The Players are: Seeker: Player name: Harry Potter, House: Gryffindor Chaser. Player name: Katie Bell, House: Gryffindor Beater: Player name: Vincent Crabbe, House: Siytherin Player name: Fred Weasley. House: Gryffindor Кeeper. Player name: Miles Bletchley. House: Slytherin Player name: Ethan Humberstone, House: Hufflepuff 8.==================================== We have enough players to form a squad. Also we can form a perfect squad!
Jun 04, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here