У меня есть этот код прямо сейчас.
current_assets = {}
yes_list=["yes", "Yes", "y", "Y"]
while create_bs in (yes_list):
key=str(input("Enter a specific account.\nExamples: Checking Account
Balance, Investment in XYZ Corp., Parking Fine Payable, Note Payable,
Receviable From John Smith\n"))
value=float(input("Enter the value/historical cost of the asset or
liability.\n"))
account_type=str(input("What type of account is this?\nOptions: 1)
Current Assets 2) Noncurrent Assets 3) Current Liabilities 4) Noncurrent
Liabilities\n"))
if account_type in ("1", "Current Assets", "current assets", "CA"):
current_assets.update({key:value})
if key in current_assets:
current_assets[key].append({key:value})
При попытке выполнить это возникают две проблемы:
Я получаю
AttributeError: 'float' object has no attribute 'append'
Значение, кажется, добавляет к себе дважды.Так, например, вместо
{Cash: 100} and {Cash: 200} becoming {Cash: (100, 200)}, it becomes {Cash: 400}