Vidyalelo
Python · Q85

Regular Expressions in Python

Programming · Python · question 85

Q85

The output of the following two Python codes are the same. CODE 1 >>> re.split(r'(a)(t)', 'The night sky') CODE 2 >>> re.split(r' +', 'The night sky')

A.
True
B.
False
Answer

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board