#you can start a multiline string with either ''' or """
'''This is a
multiline
string.'''
"""It can be used as a
multiline comment
too."""
a = """This is python progrmming
python is simple and easy to use"""
print(a)
toname = "Peter"
toemail = "p@tr"
subject = "Hi"
content = f"""From: Fromname <fromemail>
To: {toname} <{toemail}>
MIME-Version: 1.0
Content-type: text/html
Subject: {subject}
This is an e-mail message to be sent in HTML format
<b>This is HTML message.</b>
<h1>This is headline.</h1>
"""
"""You can
use both
double quotes
"""
'''And
singel
quotes
'''
# in a normal string this will be displayed as
# And
singel
quotes
cmd = f"""line {1}
line {2}
line {3}"""