update
This commit is contained in:
parent
2992f4f408
commit
4f46de8d00
3330 changed files with 394553 additions and 76939 deletions
11
.config/Code/User/History/5b4566d4/aQUp.py
Normal file
11
.config/Code/User/History/5b4566d4/aQUp.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
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: ')
|
Loading…
Add table
Add a link
Reference in a new issue