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