Skip to content

Instantly share code, notes, and snippets.

@ramanasai
ramanasai / Book_Inventory_Management.py
Created June 11, 2023 06:22
Book Inventory Management - Python Code - Without Functions
"""
author: Sai Ramana P B
email: [email protected]
Problem: Book Inventory Management
You are tasked with developing a program to manage a bookstore's inventory using dictionaries and lists. The program should allow the user to perform the following operations:
1. Add a book: The user should be able to enter the details of a book (title, author, genre, and quantity) and add it to the inventory.
2. Search for a book: Given a book title, the program should search the inventory and display the details of the book if it exists, including the quantity available.
@ramanasai
ramanasai / Book Inventory Management.py
Created June 11, 2023 06:17
Book Inventory Management - Python Program
"""
author: Sai Ramana P B
email: [email protected]
Problem: Book Inventory Management
You are tasked with developing a program to manage a bookstore's inventory using dictionaries and lists. The program should allow the user to perform the following operations:
1. Add a book: The user should be able to enter the details of a book (title, author, genre, and quantity) and add it to the inventory.
2. Search for a book: Given a book title, the program should search the inventory and display the details of the book if it exists, including the quantity available.