pandas find columns id code example
Example 1: get column number in dataframe pandas
# PANDAS: get column number from colomn name
dataframe.columns.get_loc("<col_name>")
Example 2: loc and iloc in pandas
iloc - default indexes (system generated)
loc - table indexes or we manually given indexes