I am attempting to parse through a string to look for all slashes in the string but cannot close out the parenthesis.
for i in string:
if i == '\':
do_something
It wants to treat the \' as one character. Is there a way to nullify that?