I'm using python3 and pandas I need to replace my file slashes from "" TO "/"
df = pandas.read_csv(file)
df2 = df.drop(columns=['Name'])
df2 = df2[['MD5', 'FullName']]
df2.replace(to_replace="\\", value="/")
The above seems like it should work but its not replacing anything? - also the only column I really need to have this replaced in is 'FullName' if thats possible.