Hello~Wolrd
你好,世界~
Python Sample
class Sample:
def __init__(self):
self.text = "Hello,World~"
def __str__(self):
return self.text
sample = Sample()
print(sample)
class Sample:
def __init__(self):
self.text = "Hello,World~"
def __str__(self):
return self.text
sample = Sample()
print(sample)