Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2020
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. def long_word_in_collection(list,string):
  2.       if string in list and len(string)>4:
  3.          return "True"
  4.       else:
  5.          return "False"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement