Python拆分unicode字符和单词

时间:2016-12-22 15:04:01

标签: python

我正在运行一个数据科学项目,我需要你的帮助。

我的字符串是:

string = 'Test'

我希望输出:

s1 = ''

s2 = 'Test'

1 个答案:

答案 0 :(得分:1)

我假设你的字符串总是"<emoticon><alphabets>"。然后我会拼接字符串。

# Count number of alphabets first
num = [c.isalpha() for c in string].count(True)
# Splice string based on the result
s1 = string[:-num]
s2 = string[-num:]