Contact: aviboots(AT)netvision.net.il
39,900 questions
51,831 answers
573 users
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 '''