Choose the function whose output can be: <_sre.sre_match object span="(4," match="aaaa">.

Choose the function whose output can be: <_sre.sre_match object span="(4," match="aaaa">. Correct Answer &gt;&gt;&gt; re.search('aaaa', "alohaaaa", 0)

Related Questions

What is the output after compile and run the following code ? int Output = 10;
boolean b = false;
if((b == true) && ((Output += 10) == 20))
{
System.out.println("We are equal " + Output);
}
else
{
System.out.println("Not equal! " + Output);
}