python读取txt文件 * 定位置字符的方法
作者:weixin_39012047 时间:2022-07-02 17:38:52
如下所示:
# -*- 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')
来源:https://blog.csdn.net/weixin_39012047/article/details/81328724
标签:python,txt,字符
0
投稿
猜你喜欢
windows下使用GoLand生成proto文件的方法步骤
2023-08-25 16:04:21
python基础之面对对象基础类和对象的概念
2021-08-16 03:26:33
mysql 8.0.11安装配置方法图文教程
2024-01-27 17:22:08
MySQL数据库中删除重复记录的方法总结[推荐]
2024-01-13 07:13:45
Linux 创建oracle数据库的详细过程
2023-07-14 15:59:09
Python 去除字符串中指定字符串
2023-04-20 23:44:53
Python无头爬虫下载文件的实现
2023-11-30 03:24:00
仿阿里巴巴搜索导航设计效果
2008-04-15 15:01:00
python实现将列表中各个值快速赋值给多个变量
2023-11-23 18:02:05
jupyter notebook 调用环境中的Keras或者pytorch教程
2022-10-07 23:23:09
10个提高网站可用性的实用技巧[译]
2009-06-12 12:37:00
Python如何telnet到网络设备
2023-11-20 09:47:45
php中关于hook钩子函数底层理解
2023-06-12 06:49:55
pytorch教程resnet.py的实现文件源码分析
2023-11-07 21:18:47
js Function类型
2024-05-02 16:28:23
ASP格式化日期的函数(输出13种样式)
2011-07-12 20:22:00
SQL语句中的一些特殊参数如何用变量来代替
2008-03-14 07:44:00
Python的Flask框架中使用Flask-Migrate扩展迁移数据库的教程
2024-01-19 06:38:45
python中asyncio异步编程学习
2022-10-20 06:19:37
MySQL系列之redo log、undo log和binlog详解
2024-01-17 16:30:59