在测试中,我有两条刑期。
The heart was made to be broken.
There is no surprise more magical than the surprise of being loved.
该法典:
import re
file = open( /test.txt , r )#specify file to open
data = file.readlines()
file.close()
for line in data:
line_split = re.split(r [
, ]+ ,line)
print line_split
Results from the codes:
[ The , heart , was , made , to , be , broken. , ]
[ There , is , no , surprise , more , magical , than , the , surprise , of , being , loved. ]
如何只字面打印? (见第一句) 具体结果:
[ The , heart , was , made , to , be , broken. ]
[ There , is , no , surprise , more , magical , than , the , surprise , of , being , loved. ]
任何建议?