Guest User

Untitled

a guest
Oct 18th, 2017
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. title,director(s)
  2. Schindler's List,Steven Spielberg
  3. "O Brother, Where Art Thou?","Joel Coen, Ethan Coen"
  4. 2001: A Space Odyssey,Stanley Kubrick
  5. "Sherlock, Jr.","Buster Keaton, Roscoe Arbuckle"
  6.  
  7. Winning title: O Brother, Where Art Thou?
  8. Congratulations: Joel Coen, Ethan Coen
  9.  
  10. import csv
  11.  
  12. userInput = input('Winning title: ')
  13. with open('nominees.csv', 'r', newline='') as file:
  14. nominees = csv.DictReader(file)
  15. for line in nominees:
  16. print(line[userInput])
  17. break
Add Comment
Please, Sign In to add comment