I'm doing this program:
Develop a program that asks you to enter a CPF number in the format
xxx.xxx.xxx-xx
and indicate if it is a valid or invalid number through verification digits and formatting characters.
The code is this:
pf = input("CPF(xxx.xxx.xxx-xx) :") #3 7 11
for letra in cpf:
if(cpf[3] !=".") or (cpf[7] !=".") or (cpf[11] !="-"):
cpf = input("O 'CPF' pricisa estar no formato (xxx.xxx.xxx-xx) :")
else:
print("O 'CPF' está no formato correto")
But when I run the output it is this:
O 'CPF' está no formato correto
O 'CPF' está no formato correto
O 'CPF' está no formato correto
O 'CPF' está no formato correto
O 'CPF' está no formato correto
O 'CPF' está no formato correto
O 'CPF' está no formato correto
O 'CPF' está no formato correto
O 'CPF' está no formato correto
O 'CPF' está no formato correto
O 'CPF' está no formato correto
O 'CPF' está no formato correto
O 'CPF' está no formato correto
O 'CPF' está no formato correto
How can I just go out once?