Asks the user to enter information for 4 different TV shows.
Stores this information in a list of lists format.
Uses a for loop to display the stored information.
Create a blank list called: shows = []
Prompt a user to enter the following (for 4 shows):
Show Title
Show Rating (1-5 Stars)
Show Description
Store that information as a LIST OF LISTS by adding the title, rating and description to the shows list, as a SINGLE ENTRY
Once done, print the information like below...
Adding show info to your list...
shows = [ ]
shows.append([Title, Rating, Description]
How to access them??
show[0] would be the title
show[1] would be the rating
show[2] would be the description
BUT, they're already in a list... maybe this??
shows[0][0] or shows[0][1] or shows[0][2]
OR USE A FOR LOOP SINCE IT'S WAY EASIER!!! HOW???!!
Display the rating not as a number, but using images:
Example:
⭐ ⭐🌟🌟🌟 would be 2 / 5
⭐ ⭐⭐ ⭐🌟 would be 4 /5
Can you figure out a way to add a RATINGS Field to each of the TV/Shows or movies which includes the following? And, then get each of them to display in a really cool chart for each show?
IMDB Rating (1-5)
MPAA Rating (G, PG, PG-13)
Tomatometer Rating (0-100%)
If you can figure out something like this, you'll get an extra 100. Here's a hint and some help below... You may also need int() and // division