muhammad_nasif

TASK_04

Apr 12th, 2021 (edited)
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.40 KB | None | 0 0
  1. book_info = (("Best Mystery & Thriller", "The Silent Patient", 68821),
  2.              ("Best Horror", "The Institute", 75717),
  3.              ("Best History & Biography", "The Five", 31783),
  4.              ("Best Fiction", "The Testaments", 98291))
  5.  
  6. for data in book_info:
  7.     (movieType, movieName, votes) = data
  8.     print(movieName + " won the '" + movieType + "' category with " + str(votes) + " votes")
  9.  
Add Comment
Please, Sign In to add comment