You have already completed these exercises!
Do you want to take them again?
You completed the Python RegEx Exercises from W3Schools.com
Share on:
Consider the following code:import retxt = 'The rain in Spain'x = re.findall('[a-c]', txt)print(x)What will be the printed result?
import retxt = 'The rain in Spain'x = re.findall('[a-c]', txt)print(x)
['a', 'a']
2