Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created April 11, 2018 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/bd9c87a08410554ea84fe4c960f119b0 to your computer and use it in GitHub Desktop.
Save Fhernd/bd9c87a08410554ea84fe4c960f119b0 to your computer and use it in GitHub Desktop.
Coincidencia y búsqueda de texto. OrtizOL.
import re
frase = "Python es un lenguaje de programación interpretado."
print(frase.find('grama'))
cadena_fecha = '11/04/2017'
if re.match(r'\d+\d+/\d+', cadena_fecha):
print('Coincide')
else:
print('No coincide')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment