syntaxes={
'>':"greater than",
"<": "less than",
"*": "multiplication",
"+": "addition",
'/': "forward slash"
'\': "back slash" # String literal is unterminatedPylance
}
input='>'
print(syntaxes[input])
I am trying to use the back slash as a key "" in python ,but it is not letting me and throwing error