"""
This is a
multiline comment
"""
'''
single quote
multiline comment
'''
# this is a single line comment
#function documentation comment
def get_message():
"""
function comment example
:return: "Hello World"
"""
return "Hello world"