Mega Code Archive

 
Categories / Python Tutorial / String
 

Single-Quoted Strings and Escaping Quotes

print "Hello, world!"  print 'Hello, world!'  print "Let's go!" print '"Hello, world!" she said' print 'Let\'s go!'  print "\"Hello, world!\" she said"