##############################################################################
# Parte do livro Introdução à Programação com Python
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2022
# Primeira edição - Novembro/2010 - ISBN 978-85-7522-250-8
# Segunda edição - Junho/2014 - ISBN 978-85-7522-408-3
# Terceira Edição - Janeiro/2019 - ISBN 978-85-7522-718-3
#
# Site: https://python.nilo.pro.br/
#
# Arquivo: listagem3\capítulo 10\10.31.py
##############################################################################
from functools import total_ordering
@total_ordering
class TipoTelefone:
def __init__(self, tipo):
self.tipo = tipo
def __str__(self):
return f"({self.tipo})"
def __eq__(self, outro):
if outro is None:
return False
return self.tipo == outro.tipo
def __lt__(self, outro):
return self.tipo < outro.tipo