jerry-git / jerry-git/learn-python3
I don't understand this code
Offen
- Vorherrschende Sprache
- HTML
- Sterne
- 6.9k
- Forks
- 1.8k
- PR-Merge-Kennzahlen
- Keine gemergten PRs in 30 T.
Beschreibung
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)
Beitragsleitfaden
Bewertung
Dieses Issue wurde noch nicht bewertet.