Escape Sequences
Special characters in strings
Interview Relevant: String handling
Escape Sequences
Code Examples
python
1print("Line 1\nLine 2") # Newline
2print("Tab\tSeparated") # Tab
3print("Backslash: \\")Special characters in strings
1print("Line 1\nLine 2") # Newline
2print("Tab\tSeparated") # Tab
3print("Backslash: \\")Ask about the topic