python file ouput filname.write(" "" ") is not writing to file "" -


my python script not writing "" code filname.write(" "" ") .

what going wrong here?

you need do:

filename.write(""" "" """) 

or

filename.write(' "" ') 

Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -