标签: python regex python-3.x
我有一个代码:
import re print(re.split(' (\d+)','APPLE JUICE 20'))
为什么列表末尾会出现一个空字符串?如何解决?
['APPLE JUICE', '20', '']