@property
def currentPrice(self):
. . . # Return the value of __currentPrice
@currentPrice.setter
def currentPrice(self, newValue):
. . . # Set the value of __currentPrice
#@property
def currentPrice(self):
# Return the value of __currentPrice
return __currentPrice
# @currentPrice.setter
def currentPrice(self, newValue):
# Set the value of __currentPrice
__currentPrice=newValue
Comments
Leave a comment