标签: python python-3.x
EX:- 输入字=“නමුත්” 预期输出= ['න','මු','ත්']
答案 0 :(得分:2)
您可以将re.findall与正则表达式模式\w\W?配合使用来查找所有字母:
re.findall
\w\W?
import re print(re.findall(r'\w\W?', "නමුත්"))
这将输出:
['න', 'මු', 'ත්']