Example #1
0
            print("Thanks for your addition")
        else:
            print("This book is already in our library")
    elif int(selection) == 2:
        name = input("Please write your book's name: ")
        result = library.removeBook(name)
        if result:
            print("Successfully Removed")
        else:
            print('This book is not found')
    elif int(selection) == 3:
        print(library)
        name = input("Please write your requested book's name: ")
        result = library.borrowbook(name)
        if result:
            print('Have nice readings')
        else:
            print('Sorry, this book is already taken')
    elif int(selection) == 4:
        name = input("Please write your book name: ")
        result = library.bringbook(name)
        if result:
            print('Thanks, successfully received')
        else:
            print('Where did you find this book?')
    elif int(selection) == 5:
        print(library)
    elif int(selection) == 6:
        print("Have a nice day :)\n")
        isQuit = True