Quick actions

cmd+k|ctrl+k

Navigation

Languages

Escape Sequences

Snippet info

Language

Python

Visibility

public

Author

sasso

Created

2025-12-07T13:39:52.86895Z

Updated

2025-12-07T16:30:45.106263Z

# Escape sequence
weather = "It's \"kind of\" sunny" # \ backslash serve a far riconoscere le virgolette ecc.
weather = "\t It's \"kind of\" sunny" # \t da lo spazio Tab 
weather = "\t It's \"kind of\" sunny \n hope you have a good day" # \n da la stringa successiva a capo
print (weather)
INFO