溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python面向?qū)ο蠓▽?shí)現(xiàn)圖書管理系統(tǒng)

發(fā)布時間:2020-10-11 20:58:24 來源:腳本之家 閱讀:241 作者:weixin_44224288 欄目:開發(fā)技術(shù)

本文實(shí)例為大家分享了python實(shí)現(xiàn)圖書管理系統(tǒng)的具體代碼,供大家參考,具體內(nèi)容如下

需求:

圖書管理系統(tǒng)

1.查詢圖書
2.增加圖書
3.借閱圖書
4.歸還圖書
5.退出系統(tǒng)
書:書名,作者,狀態(tài),位置

管理系統(tǒng):

實(shí)現(xiàn)如下:

class Book(object):

 def __init__(self, name, author, status, bookindex):
  self.name = name
  self.author = author
  self.status = status
  self.bookindex = bookindex

 def __str__(self):
  if self.status == 1:
   stats = '未借出'
  elif self.status == 0:
   stats = '已借出'
  else:
   stats = '狀態(tài)異常'
  return '書名: 《%s》 作者: %s 狀態(tài): <%s> 位置: %s' \
    % (self.name, self.author, stats, self.bookindex)


class BookManage(object):
 books = []

 def start(self):
  self.books.append(Book('python', 'guido', 1, 'ISO9001'))
  self.books.append(Book('c', '譚浩強(qiáng)', 1, 'NFS8102'))
  self.books.append(Book('java', 'westos', 1, 'PKA7844'))
  # 0:借出 1:存在
  # python 1
  # c 1
  # java 1

 def Menu(self):
  self.start()
  while True:
   print("""
      圖書管理系統(tǒng)
  1.查詢圖書
  2.增加圖書
  3.借閱圖書
  4.歸還圖書
  5.退出系統(tǒng)
  """)

   choice = input('請選擇:')

   if choice == '1':
    self.showAllBook()
   elif choice == '2':
    self.addBook()
   elif choice == '3':
    self.borrowBook()
   elif choice == '4':
    self.returnBook()
   elif choice == '5':
    print('歡迎下次使用...')
    exit()
   else:
    print('請輸入正確選擇')
    continue

 def showAllBook(self):
  for book in self.books:
   print(book)

 def addBook(self):
  name = input('圖書名稱:')
  self.books.append(Book(name, input('作者:'), 1, input('存儲位置:')))
  print('圖書《%s》增加成功' % name)

 def checkBook(self, name):
  for book in self.books:
   if book.name == name:
    return book
  else:
   return None

 def borrowBook(self):
  name = input('借閱圖書名稱: ')
  ret = self.checkBook(name)
  print(ret)

  if ret != None:
   if ret.status == 0:
    print('書籍《%s》已經(jīng)借出' % name)
   else:
    ret.status = 0
    print('書籍《%s》借閱成功' % name)
  else:
   print('書籍《%s》不存在' % name)

 def returnBook(self):
  name = input('歸還圖書名稱:')
  ret = self.checkBook(name)

  if ret != None:
   if ret.status == 0:
    ret.status = 1
    print('書籍《%s》歸還成功' % name)
    print(ret)
   else:
    print('書籍《%s》未借出' % name)
  else:
   print('書籍《%s》不存在' % name)


manager = BookManage()
manager.Menu()

python面向?qū)ο蠓▽?shí)現(xiàn)圖書管理系統(tǒng)python面向?qū)ο蠓▽?shí)現(xiàn)圖書管理系統(tǒng)python面向?qū)ο蠓▽?shí)現(xiàn)圖書管理系統(tǒng) python面向?qū)ο蠓▽?shí)現(xiàn)圖書管理系統(tǒng)python面向?qū)ο蠓▽?shí)現(xiàn)圖書管理系統(tǒng)python面向?qū)ο蠓▽?shí)現(xiàn)圖書管理系統(tǒng)

驗(yàn)證如下:

python面向?qū)ο蠓▽?shí)現(xiàn)圖書管理系統(tǒng)python面向?qū)ο蠓▽?shí)現(xiàn)圖書管理系統(tǒng)python面向?qū)ο蠓▽?shí)現(xiàn)圖書管理系統(tǒng)python面向?qū)ο蠓▽?shí)現(xiàn)圖書管理系統(tǒng)python面向?qū)ο蠓▽?shí)現(xiàn)圖書管理系統(tǒng)

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI