Reputation:
My Python script is not writing "" by this code filname.write(" "" ") .
""
filname.write(" "" ")
What is going wrong here?
Upvotes: 0
Views: 75
Reputation: 1457
You need to do:
filename.write(""" "" """)
or
filename.write(' "" ')
Upvotes: 7