Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import csv
  2.  
  3. file = open('simple.csv', 'r')
  4. reader = csv.DictReader(file)
  5.  
  6. value = 'Stargate Command'
  7.  
  8. for row in reader:
  9.     if row['Group'] == value:
  10.         print row
  11.    
  12. file.close()