Quick actions

cmd+k|ctrl+k

Navigation

Languages

String

Snippet info

Language

Python

Visibility

public

Author

sasso

Created

2025-12-06T22:03:14.777667Z

Updated

2025-12-07T13:32:31.082162Z

print(type("hi hello there 24!"))
username = "supercoder"
passwork = "supersecret"
long_string = '''
wow
0 0
---
'''

print (long_string)

first_name = 'Fabrizio'
last_name = 'Sasso'
full_name = first_name + ' ' + last_name
print(full_name)

#string concatenation
print('hello' + 'fabrizio') #Lavora solo con parole
INFO