> Can't you still use a triple-quoted string, but escape the > last quote? > > >>> """test\"""" > 'test"' Yes... yes I can. I can also use the other quotetation marks. I realized this just after I posted. >>> '''test"''' 'test"' Either way works. Thank you for the quick response. :)