We use re.escape() to escape the special characters −
The following code shows how all special characters in given string are escaped using re.escape() method
>>> p = '5*(67).89?' >>> re.escape(p) '5\\*\\(67\\)\\.89\\?'
We use re.escape() to escape the special characters −
The following code shows how all special characters in given string are escaped using re.escape() method
>>> p = '5*(67).89?' >>> re.escape(p) '5\\*\\(67\\)\\.89\\?'