Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. search_in = [8, 902, 111...]
  2. find_nums = [27, 89, 0...]
  3. found = False
  4. for i in find_nums:
  5.     if i in search_in: found = True; break
  6. if found: pass #здеся что надо сделать
  7. else: pass #и еще здеся если не нашел
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement