jerry-git / jerry-git/learn-python3
I don't understand this code
Aberta
- Linguagem predominante
- HTML
- Estrelas
- 6.9k
- Forks
- 1.8k
- Métricas de merge de PRs
- Nenhum PR com merge em 30d
Descrição
class SpecialString:
def __init__(self, cont):
self.cont = cont
def __truediv__(self, other):
line = "=" * len(other.cont)
return "\n".join([self.cont, line, other.cont])
spam = SpecialString("spam")
hello = SpecialString("Hello world!")
print(spam / hello)
Guia de contribuição
Avaliação
Esta issue ainda não foi avaliada.