11 lines
446 B
Python
11 lines
446 B
Python
![]() |
bookstore = []
|
||
|
|
||
|
num = input('how many books would you like to add: ')
|
||
|
for i in range(num):
|
||
|
title = input('enter book title for book ', i, ': ')
|
||
|
author = input('enter book author for book ', i, ': ')
|
||
|
quantity = input('enter book quantity for book ', i, ': ')
|
||
|
price = input('enter book price for book ', i, ': ')
|
||
|
bookstore.append({title : [author, quantity, price]})
|
||
|
|
||
|
search_title = input('enter a title to search for a book: ')
|