Python program to separate charcters in a given string

Str = (“Jan, Feb, March, April”)
Str1 = Str.split(" , ")
print (Str1)

1 Like

@iqrarsheikh117

Correct, keep it up.

1 Like