“Patrón de Python Party” Código de respuesta

Patrón de Python Party

import re
pattern = re.compile('[a-zA-Z ]+')		# a...z A...Z and space allowed
message = "Weather is nice"
if pattern.match(message).group() == message:
    print("match")
else:
    print("no match")
VasteMonde

re python3

import re
>>> m = re.search('(?<=abc)def', 'abcdef')
>>> m.group(0)
'def'
Proud Penguin

re.match python

import re
xx = "guru99,education11 is fun"
r1 = re.findall(r"^\w+",xx)
print(r1)
Horrible Hawk

Respuestas similares a “Patrón de Python Party”

Preguntas similares a “Patrón de Python Party”

Más respuestas relacionadas con “Patrón de Python Party” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código