If I try to place the following value : "' as text when by putting it in brackets as follows: a = str(""'"), it will give the following error:
SyntaxError: EOL while scanning string literal
On the other hand if I enter "' as an input it will accept it by default as a string.
How does the input class manage to convert it to string?
And is there any sequence of keys that will cause the input class to get an error when receiving a value and converts it to string?