Oddziel każdą postacie przecinkami na pojedyncze postacie oddzielone przecinkami
# E.g:
# 'hello' --> 'h', 'e', 'l', 'l', 'o'
import regex as re
a = "hello"
b = ','.join(a) #gives 'h, e, l, l, o'
result = re.split(r",(?![, ])", b) # this separates each characters separated by commas in b into single string character
print(result)
Sleepy Starling