It appears that the Blockcode-to-Python interpreter isn’t escaping the quotation mark with a backslash, as it should. It does escape a backslash, though.
For example attempting to use the code block “print … on Brain” to print a quotation mark creates the following Python code:
brain.screen.print(“”")
Which probably should be this instead:
brain.screen.print(“\”")