jerry-git / jerry-git/learn-python3
I don't understand this code
Abierto
- Lenguaje dominante
- HTML
- Estrellas
- 6.9k
- Forks
- 1.8k
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
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)
Guía de contribución
Evaluación
Este issue todavía no se ha evaluado.