February 5th, 2013, 03:12 AM
-
How do i print "?
When i use " in a text i want to print or when i want to send a sql statment and use ". Se easy example below:
print "Hello "Hank", you are the best"
Then i get error message SyntaxError: invalid syntax.
How shall i do to be able to print "?
February 5th, 2013, 04:14 AM
-
Originally Posted by Nibur
How shall i do to be able to print "?
Either alternate single and double quotes or use \ to quote the quote character:
Code:
print('Hello "Hank", you are the best')
print("Hello \"Hank\", you are the best")
My armada: Debian GNU/Linux 8 (desktop, home laptop, work laptop), Raspbian GNU/Linux 8 (nameserver), Ubuntu 14.04.3 LTS (HTPC), PC-BSD 10.2 (testbed), Android 4.2.1 (tablet)
February 5th, 2013, 04:16 AM
-