python读取txt文件中特定位置字符的方法
程序员文章站
2022-05-21 17:06:05
如下所示:
# -*- coding:utf-8 -*-
import sys
reload(sys)
sys.setdefaultencoding('...
如下所示:
# -*- coding:utf-8 -*- import sys reload(sys) sys.setdefaultencoding('utf8') fp = open("resources.txt", "r") sample = fp.readlines() file=open("test.txt", "w") for line in sample: sample_ = line.split('固定字符') print(sample_[n]) file.write(sample_[n]) file.write('\n')
以上这篇python读取txt文件中特定位置字符的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: php笔记之:文章中图片处理的使用
下一篇: php中防止SQL注入的最佳解决方法
推荐阅读
-
Python3实现将文件归档到zip文件及从zip文件中读取数据的方法
-
python中利用h5py模块读取h5文件中的主键方法
-
javascript - Python逐行读取txt中的url文件并进行爬虫
-
python将字符串以utf-8格式保存在txt文件中的方法
-
【文件处理】——字典写入json文件或TXT文件,读取文件中的字典&TypeError: Object of type ‘ndarray‘ is not JSON serializable错误解决方法
-
python读取txt文件中的数组
-
Linux统计一个文件中特定字符个数的方法
-
Python3 中把txt数据文件读入到矩阵中的方法
-
Java中读取文件转换为字符串的方法
-
Java读取txt文件中的数据赋给String变量方法