9 Ghi nội dung vào file văn bản trong Py

Chuyên mục: Python
Cập nhật: 04/12/2024
9 Ghi nội dung vào file văn bản trong Py

Cách tiếp cận tốt hơn để mở file

with open('text.txt') as file:
with open('text.txt','r') as file:
# 2 cái này giống nhau
# cách mở file này tốt hơn mở file: file = open('text.txt'). do file = open('text.txt') phải đóng thủ công: file.close().
# cách mở file trên tự đóng

Mở file với quyền viết , đảo chiều phần tử file txt ban đầu

with open('text.txt','r') as reader: # đọc file gán biến reader
	content = reader.readlines()   # tạo ra list gán vào biến content
	reversed(content) # đảo ngược phần tử trong list
	with open('text.txt','w') as writer:
		for line in reversed(content):
			writer.write(line)

Lúc này file text.txt đã đảo chiều các dòng trong file