python special characters code example
Example 1: all characters python
'0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
Example 2: python tab character
Escape Sequence Meaning
\t Tab
\\ Inserts a back slash (\)
\' Inserts a single quote (')
\" Inserts a double quote (")
\n Inserts a ASCII Linefeed (a new line)
Example 3: python strip characters
string = " python strip method test "
print(string)
print(string.strip())
print(string.strip(' strip'))
Output:
python strip method test
python strip method test
python method test
Example 4: python escape characters
\' Single Quote
\\ Backslash
newline = '\n'