Jump to content

Archived

This topic is now archived and is closed to further replies.

_SDinfo

Validação com python

Recommended Posts

Pessoal, alguém saberia como posso realizar a seguinte validação:

  • Pegar o valor de uma variável, por exemplo: "Fábio Jânio";
  • Realizar a seguinte validação: Se a variável contiver algum carácter de símbolo (. , / | ? \ ] ^) ou qualquer outro carácter que seja diferente de letras com ou sem acento mais espaço realize uma validação retornando False, caso contrario retorne True.
Alguém poderia da uma ajudinha?

 

Share this post


Link to post
Share on other sites

 

import string
s = u"Fábio Jânio"
return not any([True if x in string.punctuation else False for x in s])

 

 

import string
s = u"Fábio Jânio"
return not filter(lambda x: x in string.punctuation, s)

 

É isso?

Share this post


Link to post
Share on other sites

×

Important Information

Ao usar o fórum, você concorda com nossos Terms of Use.