Hey All,
I have been playing around with REs and could not get the following
code to run.
import re
vowel = r'[aeiou]'
re.findall(vowe l, r"vowel")
anything wrong I have done?
Regards,
Atul.
I have been playing around with REs and could not get the following
code to run.
import re
vowel = r'[aeiou]'
re.findall(vowe l, r"vowel")
anything wrong I have done?
Regards,
Atul.
Comment