How to find and print the common characters (letters) in different strings with Python

1 Answer

0 votes
str1 = "c c++ c# java go";
str2 = "python nodejs php javascript";

strcommon = ''.join(set(str1).intersection(str2))

print("Same letters are:", strcommon)



'''
run:
    
Same letters are: v jcoa
    
'''

 



answered Jan 26, 2024 by avibootz
...