Examveda

What will be the output of the following Python code?
re.split(r'(a)(t)', 'Maths is a difficult subject')

A. ['M a t h s i s a d i f f i c u l t s u b j e c t']

B. ['Maths', 'is', 'a', 'difficult', 'subject']

C. Maths is a difficult subject'

D. ['M', 'a', 't', 'hs is a difficult subject']

Answer: Option D


This Question Belongs to Python Program >> Regular Expressions In Python

Join The Discussion

Related Questions on Regular Expressions in Python