我已經創建了類命名產品,我該如何創建類型產品的對象變量? 這是我爲商店創建的類,用於跟蹤產品數據。如何創建類型爲Product的對象變量?
class Product:
"""Class for representing product"""
def __init__(self, ProdName, ProdNumber, ProdPrice, InvCount):
self.Name = ProdName
self.Number = ProdNumber
self.Price = ProdPrice
self.Inven = InvCount
self.__PropTax = 0.20
你的意思是你想要實例'Product'?如果是這樣,那就是'my_product = Product(a,b,c,d)'。 – 101
只需使用類名即可調用構造函數'__init__'並返回一個類型爲'Product'的新對象,如下所示:'my_prod = Product(name,num,price,count)' –
@TomKarzes - 謝謝 –