Quick actions

cmd+k|ctrl+k

Navigation

Languages

 Escape Sequence

Snippet info

Language

Python

Visibility

public

Author

harshdeepsaini2757

Created

2025-11-02T19:11:26.843169Z

Updated

2025-11-02T19:11:26.843169Z

# Escape Sequence
weather = "it\'s \"kind of\"sunny"
print(weather)
weather = "it\\s \"kind of\"sunny"
print(weather)
weather = "\tit\'s \"kind of\"sunny"
print(weather)
weather = "\tit\'s \"kind of\"\nsunny"
print(weather)
INFO