How to find all words from a list that contains 3 specific letters in Python

1 Answer

0 votes
lst = ["python", "c", "c++", "c#", "java", "php", "nodejs", "javascript"]
 
for word in lst:
    if 'a' in word and 'j' in word and 'v' in word:
        print(word)




'''
run:

java
javascript

'''

 



answered Jun 21, 2024 by avibootz

Related questions

1 answer 145 views
1 answer 161 views
1 answer 120 views
1 answer 100 views
1 answer 104 views
...