Я пытаюсь включить свой код, чтобы кто-то мог обновлять и удалять дома из инвентаря, который хранится в виде словаря. Вот мой код:
import random
import ast
all_homes = {} #Empty dictionary created to house inventory (get it?)
class Home_Inventory:
"""
A class for available homes in inventory.
Options include adding, modifying, and removing houses.
Allows user to output dictionary to text file for ease of reading.
"""
def __init__(self, sqrft, adr, city, state, zipcode, model, status):
self.sqrft = sqrft + 'square feet' # given integer
self.address = adr
self.zipcode = zipcode
self.city = city
self.state = state
self.model = model
self.status = status #sold/available/contract
def new_home(self): # Add a new home to list
adr = input('Enter street address: ')
city = input('Enter city: ')
state = input('Enter two-letter state acronym: ')
zipcode = int(input('Enter zipcode: '))
model = input('Enter model name: ')
sqrft = int(input('Enter whole square feet: '))
status = input('Is the house available, sold, or under contract?')
home_attr = {'a':adr, 'c':city, 's':state, 'z':zipcode, 'f':sqrft, 'm':model, 'u':status}
id_number = random.randint(1000,9999) # Create an ID number for each house for easy finding
all_homes[id_number] = home_attr
print('Home successfully added to database.')
def del_home(self): # Delete a sold home from list
del_home = input('ID number of sold home: ')
if del_home in all_homes.keys(): # Make sure it exists in list
del[del_home]
print('This home has been deleted from database.')
else:
print('Not found.')
def update_home(self): # Modify attributes of home
update_home = input('ID number of the house to modify:')
if update_home in all_homes.keys(): # Make sure it exists in list
edit_attr = input('Please select attribute to edit\n(f:feet, a: address, c: city, s: state, z: zipcode, m: model, u: status): ')
updated_attr = input('Please enter updated value: ')
all_homes[update_home].updatehome_attr(edit_attr, updated_attr)
else:
print('Not found.')
def output(self): # Prints text file of listed homes
f = open("HomeInventory.txt","a") # Opens (or creates) a text file
f.write(str(all_homes)) # Writes dictionary to text file
f.close() # Closes file
while True:
print("1. Add a home")
print("2. Remove a home")
print("3. Update home")
print("4. Print inventory")
print("5. Exit program")
user_wants=input("What would you like to do today? ")
if user_wants=="1":
Home_Inventory.new_home(input)
elif user_wants=="2":
Home_Inventory.del_home(input)
elif user_wants=="3":
Home_Inventory.update_home(input)
elif user_wants=="4":
Home_Inventory.output(input)
print(all_homes)
elif user_wants=="5":
print("\n Thank you for using home inventory.")
break
В частности: независимо от того, что я пробовал, я не могу обновить или удалить дома в словаре по какой-то причине. Я передаю ключ (идентификационный номер) и постоянно получаю «не найденные» результаты.
Кроме того, я не могу понять, как заставить словарь разрешить обновление только одного атрибута, так как я даже не могу заставить словарь тянуть найденный адрес ... Я добавил Идентификационные номера, чтобы можно было упростить поиск целевых свойств для обновления / удаления, но, похоже, это мало чем поможет.
Кроме того, я хотел бы иметь возможность открывать файл HomeInventory.txt и каждый раз открывать в нем уже созданные в нем словари, чтобы пользователи могли выйти из программы, а затем повторно войти и изменить дом. это было сделано во время предыдущего сеанса, но я не уверен, как это сделать ... Любая помощь очень ценится!