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