I have a line of code: df_empty.loc[:, "Address_Line1"] = df_empty["Address_Line1"].str.strip()
It is working perfect but showing SettingWithCopyWarning.
I have tried using :
df_empty["Address_Line1"] = df_empty["Address_Line1"].str.strip()
also tried :
df_empty["Address_Line1"] = df_empty["Address_Line1"].str.strip().copy()
but it did not solve the problem, still showing the same Warning