Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def check_line(line, number_letters):
- for word in number_letters:
- if word in line:
- print(word)
- # usage
- line = "one and three"
- check_line(line, number_letters)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement