def getCol(colName):
    theCol = [k for k, v in DATA_HEADINGS.iteritems() if v == colName]
    return theCol[0]
Exemplo n.º 2
0
def getCol(colName):
    theCol = [k for k, v in DATA_HEADINGS.iteritems() if v == colName]
    return theCol[0]