if I give input = development
output :
"de" , "ve" , "lo" , "pm" , "en" , "t"
how to create these programme
if I give input = development
output :
"de" , "ve" , "lo" , "pm" , "en" , "t"
how to create these programme
s = '"Canada", "Japan", "Germany", "Russia"' l = ['"{}"'.format(s) for s in s.split('"') if s not in ('', ', ')]
for item in l: print(item)