return
123456789101112131415
a = '''this is
a multi-line string'''
a = """some items:
1.item 1
2.item 2"""
def my_func():
a = ''' a multi-line string
that is actially indented in the second line'''
return a
b = my_func()
print(b)
Python
INFO