There is a variable which is:
line="s(a)='asd'"
I am trying to find a part which includes "s()".
I tried using:
re.match("s(*)",line)
But it seems that It is not able to search for characters that includes ( )
Is there a way to find it and print it in python?