arelis murillo

Generation

regexFri, 13 Sep 2024

Programa que pida por pantalla un número y diga si es par o impar.

regex that: match all words that start with "hello" and end with "world" and are not in the list of words that start with "hello" and end with "world" """ regex = r"\bhello(?!\w*world\b)\w*\b" return re.compile(regex, re.IGNORECASE) def

Questions about programming?Chat with your personal AI assistant