I am very new to Object oriented programming and I am having trouble accessing items in my class when I run my main method. My program is trying to allow a user to add item prices to a cart until they are finished and prints the number of items and total.
class CashRegister:
    print("Welcome to shopping world!")
    def __init__(self, price):
        self.price = price
    def addItem(self, price):
        CashRegister.totalPrice = CashRegister.totalPrice + price 
        CashRegister.itemCount = CashRegister.itemCount + 1
    @property
    def getTotal(self):
        return totalPrice
    @property
    def getCount(self):
        return itemCount
def main():
    selection = "Y"
    while selection != "N":
        selection = input("Would you like to add another item to the 
cart Y or N")
        selection = selection.upper()
        if  selection == "Y":
            price = input("What is the price of the item?")
            CashRegister.addItem(price)
        else:
            print(CashRegister.getCount)
            print(CashRegister.getTotal)
            print(selection)
main()
Here is the error I am getting when I select yes:
TypeError: addItem() missing 1 required positional argument: 'price'
Here is the output I am getting when I select no:
Welcome to shopping world!
Would you like to add another item to the cart Y or Nn
<property object at 0x0000022CFFCA2598>
<property object at 0x0000022CFFCA2548>
N
 
     
     
    