Advertisement
pacho_the_python

Untitled

Dec 19th, 2022
746
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.61 KB | None | 0 0
  1. class ConcertTrackerApp:
  2.     bands = []
  3.     musicians = []
  4.     concerts = []
  5.  
  6.     def create_musician(self, musician_type: str, name: str, age: int):
  7.         pass
  8.  
  9.     def create_band(self, name: str):
  10.         pass
  11.  
  12.     def create_concert(self, genre: str, audience: int, ticket_price: float, expenses: float, place: str):
  13.         pass
  14.  
  15.     def add_musician_to_band(self, musician_name: str, band_name: str):
  16.         pass
  17.  
  18.     def remove_musician_from_band(self, musician_name: str, band_name: str):
  19.         pass
  20.  
  21.     def start_concert(self, concert_place: str, band_name: str):
  22.         pass
  23.  
  24.    
  25.  
  26.  
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement