1. 程式人生 > >用類實現一個圖書館,實現借書,入庫,還書,查書,等功能,要求資料可以儲存到檔案中,退出後下次可以找回資料

用類實現一個圖書館,實現借書,入庫,還書,查書,等功能,要求資料可以儲存到檔案中,退出後下次可以找回資料

第一步:標準化先獲得資訊

#coding=utf-8
import traceback
import pickle
import os
import os.path


class GRLlibrary(object):
    '''huiziz的圖書館'''
    def __init__(self,name,location):
        self.name=name
        self.location=location
        self.book_list=[]
    
    #獲取圖書館的基本資訊
    def get_library_info(self):
        info
="名字:%s\n地點:%s"%(self.name,self.location) return info #只有當檔案本身被執行【被當做模組被其他程式引用】的時候,才會執行if裡面的程式碼[下面程式碼的作用] if __name__=="__main__": gr_library=GRLlibrary("光榮之路北京圖書館","北京") print (gr_library.get_library_info())

第二步:打印出command命令

class Book(object):
    def __init__(self,name,author,tag,price):
        self.
__name = name self.__author = author self.__tag = tag self.__price = price def get_book_name(self): return self.__name def set_book_name(self,new_name): self.__name = new_name def book_info(self): print(self.name,self.author,self.tag,self.price)
class GRLibrary(object): '''吳老師建立的建立的光榮之路圖書館!''' def __init__(self,name,location): self.name = name self.location = location def get_library_info(self): info = "名字:%s \n地點:%s" %(self.name,self.location) return info def list_info(): print(""" 圖書館可以輸入如下命令進行操作: create:建立圖書館 use:使用某個圖書館 add:增加圖書 borrow:借閱圖書 lend:還書 list:檢視庫中的圖書列表 search:檢視庫中是否存在某本書 """) library = None def create(library_name,location): global library library = GRLibrary(library_name,location) if __name__ == "__main__": list_info() #gr_library = GRLibrary("光榮之路北京圖書館","北京") #print(gr_library.get_library_info())

第三步:實現建立圖書館、新增圖書、檢視庫中圖書列表-雛形

import traceback
import pickle
class Book(object):
    def __init__(self,name,author,tag,price):
        self.__name = name
        self.__author = author
        self.__tag = tag
        self.__price = price 

    def get_book_name(self):
        return self.__name

    def set_book_name(self,new_name):
        self.__name = new_name

    def book_info(self):
        print(self.name,self.author,self.tag,self.price)

class GRLibrary(object):
    '''吳老師建立的建立的光榮之路圖書館!'''
    def __init__(self,name,location):
        self.name = name
        self.location = location
        self.book_list=[]
        
    def get_library_info(self):
        info = "名字:%s  \n地點:%s" %(self.name,self.location)
        return info
        
    def add(self,book):
        self.book_list.append(book)
        #print ("%s圖書入庫成功"%book.get_book_name())
        
    def list(self):
        for book in self.book_list:
            #print (book)  #我寫的
            print (book.get_book_name())   #獲取每本書的書名

def list_info():
    print("""
        圖書館可以輸入如下命令進行操作:
        create:建立圖書館
        use:使用某個圖書館
        add:增加圖書
        borrow:借閱圖書
        lend:還書
        list:檢視庫中的圖書列表
        search:檢視庫中是否存在某本書
        exit:退出
        """)
library = None
def create_library():
    global library
    library_name=input("請輸入圖書館的名字:").strip()
    location=input("請輸入圖書館的地址:").strip()
    library = GRLibrary(library_name,location)  ####這個定義...嗯
    print (("********"+"["+"%s"+"]"+"圖書館建立成功"+"********")%library_name)

def add_book():
    book_name=input("請輸入書名:").strip()
    author_name=input("請輸入作者名:").strip()
    tag=input("請輸入分類:").strip()
    price=input("請輸入書的價格:").strip()
    book=Book(book_name,author_name,tag,price)
    if library is not None:
        library.add(book)
        print (("********"+"["+"%s"+"]"+"圖書入庫成功"+"********")%book_name)
    else:
        print ("圖書館還未建立,請輸入create命令進行建立!")
        
def list_book():
    if library is not None:
        print ("圖書列表為:")
        library.list()
        
command={"create":"create_library","add":"add_book","list":"list_book"}   #前面對應list_info中的值,後面對應要呼叫的方法
     
if __name__ == "__main__":
    list_info()
    while 1:
        try:
            user_command=input("請輸入操作命令:").lower().strip()
            if user_command=="exit":
                break
            eval(command[user_command]+"()")  #執行程式:輸入的東西+user_command就可以呼叫函數了
        except:
            traceback.print_exc()   #列印報錯的堆疊資訊
            if user_command not in command:
                print ("您輸入的命令不存在")
            else:
                print ("您輸入的命令有誤,請按照命令列表輸入:")
                print (list_info())
    #gr_library = GRLibrary("光榮之路北京圖書館","北京")
    #print(gr_library.get_library_info())

終極:寫入檔案+添加註釋

import traceback
import pickle
import os
import os.path
class Book(object):
    def __init__(self,name,author,tag,price):   #定義4個書的例項變數
        self.__name = name
        self.__author = author
        self.__tag = tag
        self.__price = price 

    def get_book_name(self):
        return self.__name

    def set_book_name(self,new_name):
        self.__name = new_name

    def book_info(self):
        print(self.name,self.author,self.tag,self.price)

class GRLibrary(object):
    '''吳老師建立的建立的光榮之路圖書館!'''
    def __init__(self,name,location):
        self.name = name
        self.location = location
        self.book_list=[]  #儲存所有的書的例項物件
        
    def get_library_info(self):
        info = "名字:%s  \n地點:%s" %(self.name,self.location)
        return info
        
    def add(self,book):
        self.book_list.append(book)
        #print ("%s圖書入庫成功"%book.get_book_name())
        
    def list(self):
        for book in self.book_list:
            #print (book)  #我寫的
            print (book.get_book_name())   #獲取每本書的書名
  
    def find(self):
        book_search=input("請輸入要查詢書的名字:")
        for book in self.book_list: 
            if book.get_book_name()==book_search:
                print ("找到了%s"%book_search)
                break
        else:
            print ("沒有找到%s"%book_search)
        
def list_info():
    print("""
        圖書館可以輸入如下命令進行操作:
        create:建立圖書館
        use:使用某個圖書館
        add:增加圖書
        borrow:借閱圖書
        lend:還書
        list:檢視庫中的圖書列表
        find:檢視庫中是否存在某本書
        exit:退出
        """)
library = None
library_data_file_path=""

#封裝了一個函式,這個函式實質上是在操作例項物件。所有要輸入的引數通過命令列的方式讓使用者輸入,然後再操作類。這個設計模式叫代理
#一個函式把這個類的所有操作都實現了
def create_library():
    global library
    library_name=input("請輸入圖書館的名字:").strip()
    location=input("請輸入圖書館的地址:").strip()
    library = GRLibrary(library_name,location)  ####這個定義...嗯
    print ("圖書館建立成功")

def use_library():
    global library
    global data_file_path
    data_file_path=input("請輸入圖書館資料檔案的位置:").strip()
    if os.path.exists(data_file_path):
        try: 
            fp=open(data_file_path,"rb")
            library=pickle.load(fp)  ###盲點。通過pickle模組的反序列化操作,從檔案中建立上一次程式儲存的物件。
            library_data_file_path=data_file_path  #庫恢復出來了
        except:
            print ("圖書館的資料檔案沒有合法的資料")
    
def add_book():
    book_name=input("請輸入書名:").strip()
    author_name=input("請輸入作者名:").strip()
    tag=input("請輸入分類:").strip()
    price=input("請輸入書的價格:").strip()
    book=Book(book_name,author_name,tag,price)
    if library is not None:
        library.add(book)
        print (("["+"%s"+"]"+"圖書入庫成功")%book_name)
    else:
        print ("圖書館還未建立,請輸入create命令進行建立!")
        
def list_book():
    if library is not None:
        library.list()
        
def find_book():
    global library
    if library is not None:
        library.find()

command={"create":"create_library","add":"add_book","list":"list_book","use":"use_library","find":"find_book"}   #前面對應list_info中的值,後面對應要呼叫的方法
     
if __name__ == "__main__":
    list_info()
    while 1:
        try:
            user_command=input("請輸入操作命令:").lower().strip()
            if user_command=="exit":
                if library_data_file_path=="":
                    library_data_file_path=input("請輸入儲存圖書館資料的資料檔案路徑:")
                fp= open(library_data_file_path,"wb")
                if library is not None:   
                    pickle.dump(library,fp) #序列化。通過pickle模組的序列化操作將程式中執行的物件資訊儲存到檔案中去,永久儲存
                fp.close()
                break
            eval(command[user_command]+"()")  #執行程式:輸入的東西+user_command就可以呼叫函數了
        except:
            traceback.print_exc()   #列印報錯的堆疊資訊,除錯用
            if user_command not in command:
                print ("您輸入的命令不存在")
            else:
                print ("您輸入的命令有誤,請按照命令列表輸入:")
                print (list_info())
            continue