Quick actions

cmd+k|ctrl+k

Navigation

Languages

Escape Sequence

Snippet info

Language

Python

Visibility

public

Author

arnob

Created

2025-08-25T00:17:55.221982Z

Updated

2025-08-25T00:17:55.221982Z

##weather = 'it's sunny' (Python won't understand this)
weathes = "it's sunny" #(Python will understand this bu what if?)
#weather= "It's "kind of" sunny" (Pthon won't understand this as a string)
weather = "it\'s \"kind of\" sunny" #\ will do the trick
print(weather)


sky = "\t Beutiful" #will add a tab of space
print(sky)

moon = "\n white" #will add a new line
print(moon)


blink_voice = "Blink voice is an absolute \"SHIT\" \tplace. \nI don't like to work here. \nit\'s horrible."
print(blink_voice)





INFO