return
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) INFO
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)