Advertisement
veronikaaa86

01. Old Books

Jun 5th, 2022
326
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. input_line = input()
  4. books_count = 0
  5. is_book_found = False
  6. while input_line != "No More Books":
  7. if input_line == looking_book:
  8. is_book_found = True
  9. break
  10.  
  11. books_count += 1
  12. input_line = input()
  13.  
  14. if is_book_found:
  15. print(f"You checked {books_count} books and found it.")
  16. else:
  17. print("The book you search is not here!")
  18. print(f"You checked {books_count} books.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement