5 lines
No EOL
147 B
Python
5 lines
No EOL
147 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, ': ') |