This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import csv | |
| import json | |
| import collections | |
| csvfile = open('file.csv', 'r') | |
| def isKeyEmptyOrComment (stringKey): | |
| if not stringKey: return True | |
| if stringKey[0] == "@": return True | |
| return False |