Escape Sequences in Pythontext = 'Hey, What\'s up?'print(text)# \' => '# \" => "path = "D:\background"print(path)# \n => new line# \t => tab# \\ => \#\\\\ => \\
Post a Comment