['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q']
When you want a list of characters up to the specified character
l = [chr(s) for s in range(ord("a"), ord("q")+1)]
It's a little annoying in Japanese
l = [unichr (s) for s in range (ord (u" so "), ord (u" nu ") +1)]
with this
[That's what I'm doing]
You can get a list like this.
However, I can't find a good way to get only the voiced sound or the one without the yoon.
Recommended Posts