As I was browsing through a regular expression while learning python, I was not sure how to convert the regular expression pattern to normal string.
e.g. 
a='\nwow'  ==> print a ==> output: wow
b=repr(a)  ==> print b ==> output: \nwow
how to print wow from "b" variable not using "a" variable?
 
    