Python读写文本、图片、xml

Python操作文本、图片、xml

(1)Python读写文本
(2)Python读取、显示图片
(3)Python读写Xml

1.Python读写文本

新建helloworld.txt,创建file.py文件用于读写helloworld.txt。

1.1文本读取

1.在helloworld.txt中写入内容"你好呀!!!,wxl"。在file.py中编写程序读取helloworld.txt中内容。

cpp 复制代码
f = open("helloworld.txt",mode="r")
data = f.read()
print(data)

2.运行结果:

cpp 复制代码
Traceback (most recent call last):
  File "/home/tarena/PycharmProjects/爬虫/file.py", line 1, in <module>
    f = open("helloworld.txt",mode="r")
FileNotFoundError: [Errno 2] No such file or directory: 'helloworld.txt'

3.在右上交选择file->Edit Configurations,修改工作路径(working directory)到当前文件夹:

4.运行结果:

cpp 复制代码
你好呀!!!,wxl

Process finished with exit code 0

1.2文本写入

cpp 复制代码
f = open("helloworld.txt",mode="w")
f.write("我们朋友!!!")
f.close()

f = open("helloworld.txt",mode="r")
data = f.read()
print(data)

运行结果:

cpp 复制代码
我们朋友!!!

Process finished with exit code 0

2.Python读取、显示图片

使用PIL家族读取图片。

cpp 复制代码
from PIL import Image

img = Image.open("./5.jpg")
img.show()

显示效果:

3.Python读写Xml

cpp 复制代码
from lxml import etree

#写入XML文件
# 创建根元素和子元素
root = etree.Element('root')
child1 = etree.SubElement(root, '学生1')
child1.set('年龄', '20')
child1.text = '小明'
child2 = etree.SubElement(root, '学生2')
child2.set('年龄', '25')
child2.text = '小王'

# 将元素写入文件
tree = etree.ElementTree(root)
tree.write('output.xml', encoding='utf-8', xml_declaration=True)

# 解析XML文件
tree = etree.parse('output.xml')
root = tree.getroot()  # 获取根元素
for child in root:  # 遍历子元素
    print(child.tag, child.attrib)

运行结果:

cpp 复制代码
output.xml文件内容
<?xml version='1.0' encoding='UTF-8'?>
<root><学生1 年龄="20">小明</学生1><学生2 年龄="25">小王</学生2></root>
cpp 复制代码
学生1 {'年龄': '20'}
学生2 {'年龄': '25'}

Process finished with exit code 0
相关推荐
秃头佛爷40 分钟前
Python学习大纲总结及注意事项
开发语言·python·学习
深度学习lover2 小时前
<项目代码>YOLOv8 苹果腐烂识别<目标检测>
人工智能·python·yolo·目标检测·计算机视觉·苹果腐烂识别
API快乐传递者3 小时前
淘宝反爬虫机制的主要手段有哪些?
爬虫·python
阡之尘埃5 小时前
Python数据分析案例61——信贷风控评分卡模型(A卡)(scorecardpy 全面解析)
人工智能·python·机器学习·数据分析·智能风控·信贷风控
丕羽8 小时前
【Pytorch】基本语法
人工智能·pytorch·python
bryant_meng8 小时前
【python】Distribution
开发语言·python·分布函数·常用分布
m0_594526309 小时前
Python批量合并多个PDF
java·python·pdf
工业互联网专业10 小时前
Python毕业设计选题:基于Hadoop的租房数据分析系统的设计与实现
vue.js·hadoop·python·flask·毕业设计·源码·课程设计
钱钱钱端10 小时前
【压力测试】如何确定系统最大并发用户数?
自动化测试·软件测试·python·职场和发展·压力测试·postman
慕卿扬10 小时前
基于python的机器学习(二)—— 使用Scikit-learn库
笔记·python·学习·机器学习·scikit-learn