-
-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implementar função para remover símbolos específicos de uma string de CPF #444
base: main
Are you sure you want to change the base?
Changes from 3 commits
df82998
105d318
522d86e
dba3ad4
831aead
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -243,3 +243,47 @@ def _checksum(basenum): # type: (str) -> str | |||||||||||||||||||||||||||||||||||||||||||||||
verifying_digits += str(_hashdigit(basenum + verifying_digits, 11)) | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
return verifying_digits | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
def remove_symbols_cpf(cpf: str) -> str: | ||||||||||||||||||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||||||||||||||||||
Compute the checksum digits for a given CPF base number. | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
This function removes the symbols dot and dash (`.` and `-`) from a CPF. | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
Args: | ||||||||||||||||||||||||||||||||||||||||||||||||
basenum (str): A formatted CPF string with standard visual aid symbols or None | ||||||||||||||||||||||||||||||||||||||||||||||||
if the input is invalid. | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
Returns: | ||||||||||||||||||||||||||||||||||||||||||||||||
str: A numbers-only CPF string. If it's not a valid number or format, it'll return None. | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
Example: | ||||||||||||||||||||||||||||||||||||||||||||||||
>>> from brutils import remove_symbols_cpf | ||||||||||||||||||||||||||||||||||||||||||||||||
>>> remove_symbols_cpf('000.111.222-33') | ||||||||||||||||||||||||||||||||||||||||||||||||
'00011122233' | ||||||||||||||||||||||||||||||||||||||||||||||||
>>> remove_symbols_cpf('') | ||||||||||||||||||||||||||||||||||||||||||||||||
None | ||||||||||||||||||||||||||||||||||||||||||||||||
>>> remove_symbols_cpf(123) | ||||||||||||||||||||||||||||||||||||||||||||||||
None | ||||||||||||||||||||||||||||||||||||||||||||||||
>>> remove_symbols_cpf('000.111.222') | ||||||||||||||||||||||||||||||||||||||||||||||||
None | ||||||||||||||||||||||||||||||||||||||||||||||||
>>> remove_symbols_cpf('000.111.222-333') | ||||||||||||||||||||||||||||||||||||||||||||||||
None | ||||||||||||||||||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
cpf_no_symbols = "" | ||||||||||||||||||||||||||||||||||||||||||||||||
if cpf == "": | ||||||||||||||||||||||||||||||||||||||||||||||||
return None | ||||||||||||||||||||||||||||||||||||||||||||||||
elif not isinstance(cpf, str): | ||||||||||||||||||||||||||||||||||||||||||||||||
return None | ||||||||||||||||||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||||||||||||||||||
for character in cpf: | ||||||||||||||||||||||||||||||||||||||||||||||||
if character not in ".-": | ||||||||||||||||||||||||||||||||||||||||||||||||
cpf_no_symbols += character | ||||||||||||||||||||||||||||||||||||||||||||||||
if len(cpf_no_symbols) < 10: | ||||||||||||||||||||||||||||||||||||||||||||||||
return None | ||||||||||||||||||||||||||||||||||||||||||||||||
elif len(cpf_no_symbols) > 11: | ||||||||||||||||||||||||||||||||||||||||||||||||
return None | ||||||||||||||||||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||||||||||||||||||
return cpf_no_symbols | ||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Creio q dessa maneira fica mais legivel o codigo, verificamos o tipo do cpf apenas em 1 if, utilizamos um list-comprehension para lidar com o tratamento da string que fica mais enxuto e mais legivel tambem, e deixamos apenas um retorno na função, oq é o ideal. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Obrigado pelo retorno, fabio. Já alterei conforme solicitado. Realmente ficou muito melhor mesmo. Muito obrigado! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pode remover essa linha aqui, nao esta fazendo mais nada.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fabio, qual linha? Desculpe, sou iniciante ainda.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vmagueta claro sem problemas mano, pode remover a linha 276 onde esta sendo declarada a variavel cpf_no_symbols, não precisamos fazer essa atribuição aqui pois estamos declarando ela com o valor na linha 278.