标签:pip ade file模块 csv 安装 write 读写 bsp new
文件模块主要是对常见的文件读写功能进行了封装,默认使用UTF8(utf_8_sig)格式编码,实现一行代码读写文件。
安装 iupdatable 包
pip install --upgrade iupdatable
使用实例:
from iupdatable.system.io.File import File sample_text = ‘this is sample text.‘ sample_texts = [‘123‘, ‘abc‘, ‘ABC‘] append_text = ‘this is append text.‘ # 写入 File.write(‘1.txt‘, sample_text) File.write_lines(‘2.txt‘, sample_texts) File.append(‘1.txt‘, append_text) File.append_new_line(‘2.txt‘, append_text) # 读取 read_text1 = File.read(‘1.txt‘) read_text2 = File.read_lines(‘2.txt‘) # 打印输出 print(read_text1) print(read_text2)
输出:
this is sample text.this is append text. [‘123‘, ‘abc‘, ‘ABC‘, ‘this is append text.‘]
所有文件名应该是包含目录的完整文件路径;
所有的写入相关的操作,对于文件不存在的情况,均会先新建文件,然后写入;
File类下的全部函数:
[Python] iupdatable包:File模块使用介绍
标签:pip ade file模块 csv 安装 write 读写 bsp new
原文地址:https://www.cnblogs.com/IUpdatable/p/12497732.html