Quick actions

cmd+k|ctrl+k

Navigation

Languages

strings 

Snippet info

Language

Python

Visibility

public

Author

sermon0906

Created

2026-06-24T14:32:48.456215Z

Updated

2026-06-24T14:32:48.456215Z

name = 'hello my name is sermon sharm and i am 20 yo '
print(name)
long_string = '''
hello this side sermon and today this is python bootcamp 
so with the help of long_stirng we can write multiple lines and also we can write parragraphs 
'''
print(long_string)
INFO