如下
#python
filename="xx"
f=open(filename,'r')
for s in f:
to_s=s.rstrip().replace('\xa1',' ')
print to_s
如下
#python
filename="xx"
f=open(filename,'r')
for s in f:
to_s=s.rstrip().replace('\xa1',' ')
print to_s