When I write print(\'\\\') or print(\"\\\") or print(\"\'\\\'\"), Python doesn\'t print the backslash \\ symbol. Instead
print(\'\\\')
print(\"\\\")
print(\"\'\\\'\")
\\
A backslash needs to be escaped with another backslash.
print('\\')