Advertisement
aneliabogeva

Old books

May 13th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. favorite = input()
  2. number = int(input())
  3.  
  4. next_book = ''
  5. counter = 0
  6. is_found = False
  7.  
  8. while number > counter:
  9. next_book = input()
  10. if next_book == favorite:
  11. is_found = True
  12. break
  13. else:
  14. counter += 1
  15.  
  16.  
  17. if is_found:
  18. print(f"You checked {counter} books and found it.")
  19. else:
  20. print("The book you search is not here!")
  21. print(f"You checked {number} books.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement