how to assign value to a cell in pandas dataframe 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: change value to string pandas
mtrx['X.3'] = mtrx['X.3'].astype(str)