How to get rid of 0s showing up in st.experimental_data_editor

Summary

In my dataframe, there appear 0s in front of each value in my second row. I canโ€™t seem to understand where these "0"s are coming from. Is there a command that can get rid of them. Attached is what my dataframe currently resembles.

You probably want to cast it as int, it is most likely as string.

Given that approach, how would I restructure this line of code that represents that rowโ€ฆ
df2.loc[len(df1.index)] = [โ€˜Name 2โ€™, df1[โ€œ92โ€], df1[โ€œ62โ€], df1[โ€œ39โ€],df1[โ€œ28โ€],df1[โ€œ71โ€],df1[โ€œ6โ€] ]