Programming in Python
Exercises, Practice, Solution
search
Subscribe to:
Comments (Atom)
Python program to create a string from two given strings concatenating uncommon characters of the said strings
PROGRAM : a = input('Enter a string : ') b = input('Enter a string : ') c='' for i in a: if(i not in b):...