0
please explain this code
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)
0 ответов