When I write print(\'\\\') or print(\"\\\") or print(\"\'\\\'\"), Python doesn\'t print the backslash \\ symbol. Instead
print(\'\\\')
print(\"\\\")
print(\"\'\\\'\")
\\
you should escape it...with \
print('\\')