200行代码的python程序

时间: 2023-12-17 11:03:10 浏览: 65
好的,这里是一个200行左右的Python程序,它是一个简单的图书管理系统,包括添加图书、借阅图书、归还图书、查询图书等功能: ```python class Book: def __init__(self, title, author, isbn, num_copies): self.title = title self.author = author self.isbn = isbn self.num_copies = num_copies self.num_available = num_copies def __str__(self): return f"{self.title} by {self.author}" def display(self): print(f"Title: {self.title}") print(f"Author: {self.author}") print(f"ISBN: {self.isbn}") print(f"Number of Copies: {self.num_copies}") print(f"Number of Available Copies: {self.num_available}") class Library: def __init__(self): self.books = [] def add_book(self, book): self.books.append(book) def remove_book(self, book): self.books.remove(book) def find_book_by_title(self, title): for book in self.books: if book.title == title: return book return None def find_book_by_author(self, author): matching_books = [] for book in self.books: if book.author == author: matching_books.append(book) return matching_books def display_books(self): for book in self.books: book.display() class Borrower: def __init__(self, name): self.name = name self.borrowed_books = [] def borrow_book(self, book): if book.num_available == 0: print("Sorry, this book is not available for borrowing.") else: book.num_available -= 1 self.borrowed_books.append(book) def return_book(self, book): if book in self.borrowed_books: book.num_available += 1 self.borrowed_books.remove(book) else: print("You did not borrow this book from the library.") def display_borrowed_books(self): if len(self.borrowed_books) == 0: print("You have not borrowed any books from the library.") else: print("Your borrowed books:") for book in self.borrowed_books: print(book) def main(): library = Library() book1 = Book("The Great Gatsby", "F. Scott Fitzgerald", "978-0141182636", 5) book2 = Book("To Kill a Mockingbird", "Harper Lee", "978-0446310789", 3) book3 = Book("1984", "George Orwell", "978-0451524935", 2) library.add_book(book1) library.add_book(book2) library.add_book(book3) borrower1 = Borrower("Alice") borrower2 = Borrower("Bob") while True: print() print("Welcome to the Library Management System!") print("1. Add a book") print("2. Remove a book") print("3. Find a book by title") print("4. Find books by author") print("5. Display all books") print("6. Borrow a book") print("7. Return a book") print("8. Display borrowed books") print("9. Quit") try: choice = int(input("Please enter your choice: ")) except ValueError: print("Invalid choice. Please enter a number.") continue if choice == 1: title = input("Please enter the book title: ") author = input("Please enter the book author: ") isbn = input("Please enter the book ISBN: ") num_copies = int(input("Please enter the number of copies: ")) book = Book(title, author, isbn, num_copies) library.add_book(book) print("Book added successfully.") elif choice == 2: title = input("Please enter the title of the book you want to remove: ") book = library.find_book_by_title(title) if book: library.remove_book(book) print("Book removed successfully.") else: print("Book not found.") elif choice == 3: title = input("Please enter the book title: ") book = library.find_book_by_title(title) if book: book.display() else: print("Book not found.") elif choice == 4: author = input("Please enter the author name: ") matching_books = library.find_book_by_author(author) if len(matching_books) == 0: print("No matching books found.") else: print("Matching books:") for book in matching_books: book.display() elif choice == 5: library.display_books() elif choice == 6: title = input("Please enter the title of the book you want to borrow: ") book = library.find_book_by_title(title) if book: borrower = input("Please enter your name: ") if borrower == borrower1.name: borrower1.borrow_book(book) elif borrower == borrower2.name: borrower2.borrow_book(book) else: print("Borrower not found.") else: print("Book not found.") elif choice == 7: title = input("Please enter the title of the book you want to return: ") book = library.find_book_by_title(title) if book: borrower = input("Please enter your name: ") if borrower == borrower1.name: borrower1.return_book(book) elif borrower == borrower2.name: borrower2.return_book(book) else: print("Borrower not found.") else: print("Book not found.") elif choice == 8: borrower = input("Please enter your name: ") if borrower == borrower1.name: borrower1.display_borrowed_books() elif borrower == borrower2.name: borrower2.display_borrowed_books() else: print("Borrower not found.") elif choice == 9: print("Goodbye!") break else: print("Invalid choice. Please enter a number between 1 and 9.") if __name__ == '__main__': main() ``` 这个程序使用了面向对象的编程风格,其中定义了三个类:Book、Library和Borrower。Book类表示一本书,包括书名、作者、ISBN和库存数量等属性,以及展示书籍信息的方法。Library类表示图书馆,包括添加图书、删除图书、查找图书等方法。Borrower类表示借阅者,包括借阅图书、归还图书、展示已借阅图书等方法。 在主函数中,用户可以选择不同的操作,例如添加图书、借阅图书、归还图书、查询图书等。每个操作都会调用相应的方法来完成相应的任务。程序也包含了一些错误处理,例如用户输入非法的选项时会提示用户重新输入。
阅读全文

相关推荐

最新推荐

recommend-type

20行python代码的入门级小游戏的详解

Python是一种易学易用的编程语言,非常适合初学者入门。这篇教程通过一个简单的猜数字游戏,...此外,编写类似的小程序可以帮助巩固Python的基本语法,如变量、流程控制、输入输出等,对初学者来说是极好的实践机会。
recommend-type

python程序快速缩进多行代码方法总结

在Python编程语言中,缩进是非常关键的一部分,它不同于许多其他编程语言,如C、Java等,用大括号来定义代码块。Python通过缩进来表示...在编写Python程序时,确保始终注意缩进,因为它直接影响到程序的执行和结果。
recommend-type

python实现简单的购物程序代码实例

在Python编程中,实现一个简单的购物程序可以帮助初学者理解如何处理用户输入、循环、条件判断以及数据结构(如列表)的使用。以下是对这个购物程序关键知识点的详细说明: 1. **商品列表** (Product List): 商品...
recommend-type

python程序变成软件的实操方法

将Python程序转换为可执行的软件文件,可以让用户在没有Python环境的情况下直接运行。本文将详细介绍如何将Python程序变成软件,通过使用`pywin32`和`pyinstaller`这两个工具。 首先,我们需要`pywin32`这个库,它...
recommend-type

答题辅助python代码实现

8. **循环运行**:`main`函数中的`while True`循环使得程序能够持续不断地运行,不断抓取屏幕、识别问题和答案,直至程序被手动停止。 这个答题辅助工具的主要工作流程是:获取屏幕截图->识别问题文本->识别答案...
recommend-type

HTML挑战:30天技术学习之旅

资源摘要信息: "desafio-30dias" 标题 "desafio-30dias" 暗示这可能是一个与挑战或训练相关的项目,这在编程和学习新技能的上下文中相当常见。标题中的数字“30”很可能表明这个挑战涉及为期30天的时间框架。此外,由于标题是西班牙语,我们可以推测这个项目可能起源于或至少是针对西班牙语使用者的社区。标题本身没有透露技术上的具体内容,但挑战通常涉及一系列任务,旨在提升个人的某项技能或知识水平。 描述 "desafio-30dias" 并没有提供进一步的信息,它重复了标题的内容。因此,我们不能从中获得关于项目具体细节的额外信息。描述通常用于详细说明项目的性质、目标和期望成果,但由于这里没有具体描述,我们只能依靠标题和相关标签进行推测。 标签 "HTML" 表明这个挑战很可能与HTML(超文本标记语言)有关。HTML是构成网页和网页应用基础的标记语言,用于创建和定义内容的结构、格式和语义。由于标签指定了HTML,我们可以合理假设这个30天挑战的目的是学习或提升HTML技能。它可能包含创建网页、实现网页设计、理解HTML5的新特性等方面的任务。 压缩包子文件的文件名称列表 "desafio-30dias-master" 指向了一个可能包含挑战相关材料的压缩文件。文件名中的“master”表明这可能是一个主文件或包含最终版本材料的文件夹。通常,在版本控制系统如Git中,“master”分支代表项目的主分支,用于存放项目的稳定版本。考虑到这个文件名称的格式,它可能是一个包含所有相关文件和资源的ZIP或RAR压缩文件。 结合这些信息,我们可以推测,这个30天挑战可能涉及了一系列的编程任务和练习,旨在通过实践项目来提高对HTML的理解和应用能力。这些任务可能包括设计和开发静态和动态网页,学习如何使用HTML5增强网页的功能和用户体验,以及如何将HTML与CSS(层叠样式表)和JavaScript等其他技术结合,制作出丰富的交互式网站。 综上所述,这个项目可能是一个为期30天的HTML学习计划,设计给希望提升前端开发能力的开发者,尤其是那些对HTML基础和最新标准感兴趣的人。挑战可能包含了理论学习和实践练习,鼓励参与者通过构建实际项目来学习和巩固知识点。通过这样的学习过程,参与者可以提高在现代网页开发环境中的竞争力,为创建更加复杂和引人入胜的网页打下坚实的基础。
recommend-type

【CodeBlocks精通指南】:一步到位安装wxWidgets库(新手必备)

![【CodeBlocks精通指南】:一步到位安装wxWidgets库(新手必备)](https://www.debugpoint.com/wp-content/uploads/2020/07/wxwidgets.jpg) # 摘要 本文旨在为使用CodeBlocks和wxWidgets库的开发者提供详细的安装、配置、实践操作指南和性能优化建议。文章首先介绍了CodeBlocks和wxWidgets库的基本概念和安装流程,然后深入探讨了CodeBlocks的高级功能定制和wxWidgets的架构特性。随后,通过实践操作章节,指导读者如何创建和运行一个wxWidgets项目,包括界面设计、事件
recommend-type

andorid studio 配置ERROR: Cause: unable to find valid certification path to requested target

### 解决 Android Studio SSL 证书验证问题 当遇到 `unable to find valid certification path` 错误时,这通常意味着 Java 运行环境无法识别服务器提供的 SSL 证书。解决方案涉及更新本地的信任库或调整项目中的网络请求设置。 #### 方法一:安装自定义 CA 证书到 JDK 中 对于企业内部使用的私有 CA 颁发的证书,可以将其导入至 JRE 的信任库中: 1. 获取 `.crt` 或者 `.cer` 文件形式的企业根证书; 2. 使用命令行工具 keytool 将其加入 cacerts 文件内: ```
recommend-type

VC++实现文件顺序读写操作的技巧与实践

资源摘要信息:"vc++文件的顺序读写操作" 在计算机编程中,文件的顺序读写操作是最基础的操作之一,尤其在使用C++语言进行开发时,了解和掌握文件的顺序读写操作是十分重要的。在Microsoft的Visual C++(简称VC++)开发环境中,可以通过标准库中的文件操作函数来实现顺序读写功能。 ### 文件顺序读写基础 顺序读写指的是从文件的开始处逐个读取或写入数据,直到文件结束。这与随机读写不同,后者可以任意位置读取或写入数据。顺序读写操作通常用于处理日志文件、文本文件等不需要频繁随机访问的文件。 ### VC++中的文件流类 在VC++中,顺序读写操作主要使用的是C++标准库中的fstream类,包括ifstream(用于从文件中读取数据)和ofstream(用于向文件写入数据)两个类。这两个类都是从fstream类继承而来,提供了基本的文件操作功能。 ### 实现文件顺序读写操作的步骤 1. **包含必要的头文件**:要进行文件操作,首先需要包含fstream头文件。 ```cpp #include <fstream> ``` 2. **创建文件流对象**:创建ifstream或ofstream对象,用于打开文件。 ```cpp ifstream inFile("example.txt"); // 用于读操作 ofstream outFile("example.txt"); // 用于写操作 ``` 3. **打开文件**:使用文件流对象的成员函数open()来打开文件。如果不需要在创建对象时指定文件路径,也可以在对象创建后调用open()。 ```cpp inFile.open("example.txt", std::ios::in); // 以读模式打开 outFile.open("example.txt", std::ios::out); // 以写模式打开 ``` 4. **读写数据**:使用文件流对象的成员函数进行数据的读取或写入。对于读操作,可以使用 >> 运算符、get()、read()等方法;对于写操作,可以使用 << 运算符、write()等方法。 ```cpp // 读取操作示例 char c; while (inFile >> c) { // 处理读取的数据c } // 写入操作示例 const char *text = "Hello, World!"; outFile << text; ``` 5. **关闭文件**:操作完成后,应关闭文件,释放资源。 ```cpp inFile.close(); outFile.close(); ``` ### 文件顺序读写的注意事项 - 在进行文件读写之前,需要确保文件确实存在,且程序有足够的权限对文件进行读写操作。 - 使用文件流进行读写时,应注意文件流的错误状态。例如,在读取完文件后,应检查文件流是否到达文件末尾(failbit)。 - 在写入文件时,如果目标文件不存在,某些open()操作会自动创建文件。如果文件已存在,open()操作则会清空原文件内容,除非使用了追加模式(std::ios::app)。 - 对于大文件的读写,应考虑内存使用情况,避免一次性读取过多数据导致内存溢出。 - 在程序结束前,应该关闭所有打开的文件流。虽然文件流对象的析构函数会自动关闭文件,但显式调用close()是一个好习惯。 ### 常用的文件操作函数 - `open()`:打开文件。 - `close()`:关闭文件。 - `read()`:从文件读取数据到缓冲区。 - `write()`:向文件写入数据。 - `tellg()` 和 `tellp()`:分别返回当前读取位置和写入位置。 - `seekg()` 和 `seekp()`:设置文件流的位置。 ### 总结 在VC++中实现顺序读写操作,是进行文件处理和数据持久化的基础。通过使用C++的标准库中的fstream类,我们可以方便地进行文件读写操作。掌握文件顺序读写不仅可以帮助我们在实际开发中处理数据文件,还可以加深我们对C++语言和文件I/O操作的理解。需要注意的是,在进行文件操作时,合理管理和异常处理是非常重要的,这有助于确保程序的健壮性和数据的安全。
recommend-type

【大数据时代必备:Hadoop框架深度解析】:掌握核心组件,开启数据科学之旅

![【大数据时代必备:Hadoop框架深度解析】:掌握核心组件,开启数据科学之旅](https://media.licdn.com/dms/image/C4E12AQGM8ZXs7WruGA/article-cover_image-shrink_600_2000/0/1601775240690?e=2147483647&v=beta&t=9j23mUG6vOHnuI7voc6kzoWy5mGsMjHvqq5ZboqBjjo) # 摘要 Hadoop作为一个开源的分布式存储和计算框架,在大数据处理领域发挥着举足轻重的作用。本文首先对Hadoop进行了概述,并介绍了其生态系统中的核心组件。深入分