This might be pretty simple but my program is just a movie ticket booking:
My list is (for example):
bookings=[["Sam", 1, "titanic", "morning", "Stit1"], ["Bill", 2, "titanic", "evening", "Btit2"], ["Kik", 2, "lionking", "afternoon", "Klio2"]] I want to print how many people are (for example) going to watch titanic. How do I do that?
Thanks in advance