More than 1 year has passed since last update.
class Word(object):
def __init__(self, text):
self.text = text
def __len__(self):
return len(self.text)
def __str__(self):
return '文字列として読み込まれました'
def __add__(self, other):
return self.text + other.text
def __eq__(self, other):
return self.text == other.text
w = Word('test')
w2 = Word('test2')
print(len(w))#4
print(w)#文字列として読み込まれました
print(w + w2)#testtest2
print(w == w2)#FAlse
Why not register and get more from Qiita?
- We will deliver articles that match you
By following users and tags, you can catch up information on technical fields that you are interested in as a whole
- you can read useful information later efficiently
By "stocking" the articles you like, you can search right away
Sign upLogin