8 lines
No EOL
140 B
Python
8 lines
No EOL
140 B
Python
|
|
class CEP:
|
|
|
|
@staticmethod
|
|
def validate(data: str) -> bool:
|
|
|
|
# Valida e retorna a informação
|
|
return len(data) == 8 |