Advertisement
veronikaaa86

01. Old Books

Mar 27th, 2022
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. looking_book = input()
  2.  
  3. is_book_found = False
  4. book_count = 0
  5. input_line = input()
  6. while input_line != "No More Books":
  7. if input_line == looking_book:
  8. is_book_found = True
  9. break
  10. book_count = book_count + 1
  11. input_line = input()
  12.  
  13. if is_book_found:
  14. print(f"You checked {book_count} books and found it.")
  15. else:
  16. print("The book you search is not here!")
  17. print(f"You checked {book_count} books.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement