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 143 views
1 answer 159 views
1 answer 119 views
1 answer 99 views
1 answer 103 views
...