Posts by Cazeluma • 1 point
1 post
-
0
votes0
answers14
viewsQ: how to make algorithm for the second CPF checker code for Python?
while True: cpf = input("Digite n: ") novo_cpf = cpf[:-2] soma_digitos = 0 lista_digitos = [] for key, index in enumerate(novo_cpf): key_reverso = len(novo_cpf) + 1 - key…