Contact: aviboots(AT)netvision.net.il
41,321 questions
53,836 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 '''