Ejemplo n.º 1
0
def prompt_add_book():
    """[Asks to the user the information regards to the book]
    """
    name = input("Enter the new book name:\n")
    author = input("Enter the new book author's name:\n")

    database.insert_book(name, author)
Ejemplo n.º 2
0
def prompt_insert_book():
    name = input('Enter the new book name: ')
    author = input('Enter the new book author: ')

    database.insert_book(name, author)
Ejemplo n.º 3
0
def add_book():
    name = input('Enter the new book name: ').upper()
    author = input('Enter the new book author: ').upper()
    database.insert_book(name, author)