#!/python26/python
print "Content-type: text/htmln"
#-----------------------------
mystr1 = "wwn" # a newline character
mystr2 = r"n" # two characters, and n
#-----------------------------
mystr3 = "Jon 'Maddog' Orwant" # literal single quote inside double quotes
mystr4 = 'Jon "Maddog" Orwant' # literal double quote inside single quotes
#-----------------------------
mystr5 = 'Jon 'Maddog' Orwant' # escaped single quote
mystr6 = "Jon "Maddog" Orwant" # escaped double quote
#-----------------------------
mystr7 = """
This is a multiline string literal
enclosed in triple double quotes.
"""
mystr8 = '''
And this is a multiline string literal
enclosed in triple single quotes.
'''
#-----------------------------
print mystr1,""
print mystr2,""
print mystr3,""
print mystr4,""
print mystr5,""
print mystr6,""
print mystr7,""
print mystr8,""
import datetime
sri=datetime.datetime.now()
print sri.strftime(%T,%D)