I am a beginner in python. I knew that " is a special character and needs \ to print it. But how does python handles " in a string when \ is not provided? For example

s = "Google," "facebook" print(s)

prints "Google,facebook". How does python skips the middle "?