Advertisement
Rayk

Untitled

Apr 27th, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. correct_book = input()
  2. input_book = input()
  3. attempts = 1
  4. while input_book != correct_book:
  5. attempts += 1
  6. input_book = input()
  7. print(f'Book found! Attempts: {attempts}')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement