8 lines
264 B
Python
8 lines
264 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, ': ')
|
||
|
title = input('enter book title for book ', i, ': ')
|