python数据库程序_python简单模拟数据库程序
做个小程序,简单的模拟数据库,代码比较长,觉得可以学习的地方很多,记下来#database.pyimport sys,shelvedef store_person(db):"""Query user for data and store it in the shelf object"""pid = raw_input("Enter unique ID number:")person = {}per...