s = 'abc12321cba'
print(s.replace('a', ''))
string.replace(old character, new character, count)
# Python program to remove single occurrences of a character from a string
text= 'ItsMyCoode'
print(text.replace('o','',1))
str1 = "abcdefghij"
list1 = list(str1)
print(list1)