1. 程式人生 > >Python中的str方法

Python中的str方法

class Car(object):
    def __init__(self, newWwheelNum,newColor):
        self.wheel = newWwheelNum
        self.color = newColor
    def __str__(self):
        msg = "嘿,我的顏色是:"+self.color+"我有"+str(self.wheel)+"個輪子》》》"
        return msg
    def move(self):
        print('車在跑,目標是夏威夷')

b = Car(4,"白色")
print(b)

總結

1、在python中方法名如果是__xxxx__()的,那麼就有特殊的功能,因此叫做“魔法”方法

2、當使用print輸出物件的時候,只要自己定義了__str__(self)方法,那麼就會列印從在這個方法中return的資料