# coding: UTF-8 import re f = open(r'C:\Users\17656\Desktop\暑假\py\去首字(文件版).txt', encoding='utf-8') newArr=[] for x in f: new_x=x[1:] print(new_x) #newStr1 = x.replace(x[0] + ' ', ' ') # 去掉第一个 #print(newStr1) #newStr2=x.replace(newStr1[0] + ' ', ' ') #newArr.append(newStr1) # 添加到新列表 #newArr.append(newStr2) f.close()
上面是去掉第一个字。
open函数会将路径中的\当做转义字符处理,故加r
下面是加数字代码
# coding: UTF-8 #设置编码 import re infile = open('1.txt', encoding='utf-8') # 读取文件(蒙语文本utf-8编码) #infile = open('1.txt','r') #读取文件(正常中文编码格式) lines = infile.readlines() for x in infile: print(x) infile.close()
数字从0开始
因多行文字复制粘连只能够输入第一行内容,没有比较满意的方法解决,所以选择文件操作