##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)