single_quoted = 'Each string could be enclosed with single quotes: \' or double quotes like "'
print single_quoted
print "Even if they need to contain\n\t well known special characters they do. \
And they could be prolonged on second code-like not affecting representation \
using backslash '\\' character"
print("""Here could be a very long strings
automatically prolonged as much as we want and will
contain all formatting we leave here
as well as ll special characters we want:
\t- like <Tab>\n\t- or new line, etc.""")
print('''Single quotes are also suits for this, so don't care about escaping''')