示例#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)
示例#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)
示例#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)