_SDinfo 3 Report post Posted August 31, 2013 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
_Isis_ 202 Report post Posted September 2, 2013 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