user define function
def my_func():
a = '''a multi-line string
that is actually indented in the second line'''
return a
print(my_func())
b = my_func()
print("b =",b)INFO
def my_func():
a = '''a multi-line string
that is actually indented in the second line'''
return a
print(my_func())
b = my_func()
print("b =",b)