Quick actions

cmd+k|ctrl+k

Navigation

Languages

Escape Sequence

Snippet info

Language

Python

Visibility

public

Author

andromachi.vasileiou

Created

2026-01-15T10:15:58.536638Z

Updated

2026-01-15T10:20:28.508451Z

#Escape Sequence =-> it allows to put " without changing the string. Whatever comes after \ is a string
#\t = tab
#n = goes to the next line
weather = "\t It\'s \"kind of\" sunny \n hope you have a good day!"
print(weather)
INFO