Advertisement
veronikaaa86

01. Old Books

Jul 31st, 2022
530
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. books_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.  
  11. books_count += 1
  12.  
  13. input_line = input()
  14.  
  15. if is_book_found:
  16. print(f"You checked {books_count} books and found it.")
  17. else:
  18. print("The book you search is not here!")
  19. print(f"You checked {books_count} books.")
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement