示例:我有一个文件:
filename1 =“我是学生”(在filename1中,我是学生)
f = open(filename1)
string = f.read()
spl = re.split('\s|(?<!\d)[,.](?!\d)',string)
f.close
print spl将显示: 我是学生,但我需要结果[学生我是] 你能回答我吗... 提前谢谢。
答案 0 :(得分:3)
答案 1 :(得分:0)
str=['im a student','im a teacher']
list=[]
for x in str:
new=""
for y in [x for x in reversed(x.split())]:
new+=y
new+=' '
list.append(new)
print list // ['student a im ', 'teacher a im ']