0
https://docs.python.org/2.0/ref/strings.html
If it's a double quote inside of a double quote you can use \"
e.g.
s = "He said \"Hello\" to me."
Or you can use single quotes with double quotes inside
e.g.
s = 'He said "Hello" to me'



