Pandas benennen Kolumnen Whitespace mit Unterstrich um
dataframe.columns = list(map(lambda x: x.replace(' ', '_'),
dataframe.columns))
Smoking Snake