Quick actions

cmd+k|ctrl+k

Navigation

Languages

return

Snippet info

Language

Python

Visibility

public

Author

kenneth06123

Created

2024-04-08T03:56:00.058928Z

Updated

2024-04-08T03:56:00.058928Z

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