I started making a project that is showing which bands I like, then ask what artist/band's albums they want to see rated by me. I've got it to show what albums I like but then whenever I try to get Python to show how I rated each song in a specific album for the band/artist, it doesn't do anything. It just ends.
What is happening and how do I fix it?
Also how do I convert the album = input("\nWhich album would you like to see the songs rated?")
to be only lowercase so it is easier? Like if it ask Which album would you like to see the songs rated? and I put Vessel
, won't Python not interpret the list name and not paste the list?
import time
top_albums = ["1.) Vessel", "2.) Regional at Best", "3.) Twenty One
Pilots", "4.) Blurryface"]
twenty_one_pilots = ["Example 1"]
regional_at_best = ["Example 2"]
vessel = ["Example 3"]
blurryface = ["Example 4"]
for top_album in top_albums:
print(top_album)
time.sleep(2)
album = input("\nWhich album would you like to see the songs rated?")
if album == twenty_one_pilots:
print(twenty_one_pilots)
elif album == regional_at_best:
print(regional_at_best)
elif album == vessel:
print(vessel)
elif album == blurryface:
print(blurryface)