Assume my password is hello"world and the below is how I stored in .env file.
Now I have a python script like so
password= os.getenv("password")
print(password)
This prints hello\"world. Meaning it takes the literal backslash and still keeps it in the string. How to avoid it?