if you select all the values in the SteelLocation column then left click->format cells->Number->press ok
excel will give the plain value without the exponent sign. Then save it as a .csv file.
Excel after conversion:
Afterwards, convert the value to int in your python code.
Example code:
import pandas as pd
file_path = "delete.csv"
df = pd.read_csv(file_path)
df['Steel Locations'] = df['Steel Locations'].astype('int64')
for [key, value] in df.to_dict().items():
print(value)