Is there a way to take a raw string/literal string in python and interpret it as a regular string. For example.
>>> a = r'un\x00'
>>> len(a)
6
What can I do to 'a' to make len(a) = 3
Is there a way to take a raw string/literal string in python and interpret it as a regular string. For example.
>>> a = r'un\x00'
>>> len(a)
6
What can I do to 'a' to make len(a) = 3