- A ['_', '3']
- B ['P', 't']
- C [' ', '3']
- D ['t', '3']
Python Programming Language MCQ Python RegEx Module MCQ
⚠ Report ✓ Question Verified Copy Link
import re
x = re.compile(r'[^A-Za-z0-2]')
y = x.findall('Python_3')
print(y)
Learn More MCQ Questions from Python Programming Language MCQ Python RegEx Module MCQ