class GhettoGospelCode:
def init(self):
self.hood_days = "Recollection of hood days"
self.reminisce = "Sit and reminisce, thinkin' of bliss and the good days (Days)"
self.younger_generation = "Stop and stare at the younger"
self.heart_goes_to_them = "Heart goes to 'em, they tested with stress that they under"
self.things_change = "Nowadays, things change"
self.world_cursed = "Left 'em a world that's cursed, and it hurts (Hurts)"
self.push_the_button = "Any day, they'll push the button"
self.malcolm_x_bobby_hutton = "Good men like Malcolm X or Bobby Hutton died for nothin'"
self.world_looks_dreary = "World looks dreary, wipe your eyes, see it clearly"
self.no_need_to_fear = "No need for you to fear me"
self.learn_to_cheer_me = "Take your time to hear me, maybe you can learn to cheer me"
self.humanity = "Ain't about black or white, ‘cause we human"
self.see_the_light = "Hope we see the light before it's ruined"

def chorus(self):
"""
Chorus of Ghetto Gospel
"""
print("I write, these memoirs for my soul")
print("I write, these memoirs for my woes")
print("I fight, my demons and my foes")
print("That’s why my eyes, impure from blood and gold")

def interlude(self, power_craving):
"""
Interlude of Ghetto Gospel
"""
print(f"Whatever power you are craving, it will not change what you are")
print(f"The least of us-")
print(f"You came to us from the gutter")
print(f"Your ability gave you station but all the power in the world can’t mask the stench beneath-")

def outro(self):
"""
Outro of Ghetto Gospel
"""
print("The pain of the people")

Instantiate GhettoGospelCode

ghetto_gospel = GhettoGospelCode()

Code the verse

print(ghetto_gospel.hood_days)
print(ghetto_gospel.reminisce)
print(ghetto_gospel.younger_generation)
print(ghetto_gospel.heart_goes_to_them)
print(ghetto_gospel.things_change)
print(ghetto_gospel.world_cursed)
print(ghetto_gospel.push_the_button)
print(ghetto_gospel.malcolm_x_bobby_hutton)
print(ghetto_gospel.world_looks_dreary)
print(ghetto_gospel.no_need_to_fear)
print(ghetto_gospel.learn_to_cheer_me)
print(ghetto_gospel.humanity)
print(ghetto_gospel.see_the_light)

Code the chorus

ghetto_gospel.chorus()

Code the interlude

power_craving = "Power Craving"
ghetto_gospel.interlude(power_craving)

Code the outro

ghetto_gospel.outro()