Quick actions

cmd+k|ctrl+k

Navigation

Languages

Strings

Snippet info

Language

Python

Visibility

public

Author

inikitin381

Created

2024-10-26T01:31:49.533335Z

Updated

2024-10-26T01:31:55.635862Z

# print(type('hi hello there 24!'))
# username = 'supercoder'
# password = 'supersecret'
# long_string = '''
# WOW
# O O
# ---
# '''
# print(long_string)
first_name = 'Egor'
last_name = 'Andreyev'
full_name = first_name+ ' ' + last_name
print(full_name)
INFO