I have this line of code:
pathname = input("Insert path of h5 file here: ")
When I run this line, I paste the Pathname I wish and then that is passed in the pathname variable.
When I type pathname on my console to see what has been passed I see that the path of the file has been passed with single quotes like... 'pathname' whereas I want to save it in the pathname variable with double quotes like... "pathname".
I've tried many things such as using the .replace() function but that didn't work.