Answers for "patterns python"

-1

python pattern

python
        
            
        
     import re
v = "aeiou"
c = "qwrtypsdfghjklzxcvbnm"
print(*re.findall("(?=[%s]([%s]{2,})[%s])"%(c,v,c),input(), re.I) or [-1], sep="n")
Posted by: Guest on June-30-2021

Python Answers by Framework

Browse Popular Code Answers by Language