79677088

Date: 2025-06-24 06:22:07
Score: 1.5
Natty:
Report link

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:

The above graph without the exponent sign

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)
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Akshay NN