I'm iterating through a pandas dataframe and fetch values:
for index, row in df.iterrows():
st= row.values
I have a column called text where the value is
"current user's role"
I would like to convert that to (single quotes and a backslash in front the apostrophe in user's
'current user\'s role'
I would like to get the backslash also inserted to the string. I'm tryning to make a DML (insert) statement here