jerry-git / jerry-git/learn-python3
I don't understand this code
オープン
- 主要言語
- HTML
- スター
- 6.9k
- フォーク
- 1.8k
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
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)
コントリビューションガイド
評価
この issue はまだ評価されていません。