Python文件 *** 作有哪些方式?

Python文件 *** 作有哪些方式?,第1张

Python文件 *** 作主要有以下几种方式:

打开文件:使用open()函数打开文件,该函数需要指定文件名以及打开文件的模式(例如只读、只写、追加等)。打开文件后,可以使用文件对亮闭象进行读取、写入、关闭等 *** 作

读取文件:使用文件对象的read()、readline()、readlines()方法来读取文件内容。read()方法可以一次性读取整个文件,readline()方法可以逐行读取文件,readlines()方法可以将文件的所有行读取到一个列表中。

写入文件:使用文件对象的write()方法将数据写入文件。write()方法可以接受字符串作为参数,并将其写入文件。

关闭文件:使用文件对象的close()方法关闭文件。关闭文件后,可以避免占用系统资源。

with语句:使用with语句可以自动管理文件的关闭。with语句创建一个上下文环境,在该环境中打开文件,并在代码块执行完毕后自动关闭文件。

os模块:使用os模块可以进行文件和目录的 *** 作,包括创建、敬磨裂重命名、删除、移动等。os模块还提供了一些游州与文件路径相关的函数,例如join()、split()、abspath()等,可以方便地处理文件路径。

#!usr/bin/python  

# -*-coding:utf-8-*-  

  

from sys import argv  

  

script , filename = argv  

  

print ("We're going to arase %r." % filename)             

# 打印  We're going to arase test.txt  

print ("If you don't want that, hit CTRL-C (^C).")  

# 打印  If you don't want that, hit CTRL-C (^C).  

print ("If you do want that, hit RETURN.")    侍培液            

# 打印  If you do want that, hit RETURN.  

input("?")                                                            

  

print ("Opening the file...")                             

# 打印  Opening the file...  

target = open(filename,"w")   

#   以写模式 打开test.txt  

#   w代表写模式打开文件  

#   r代表读模式打开文件  

#   wr代表读写模式打开文件  

#   w+代表读写模式打开文件  

#   r+代表读写模式打开文件  

#   a+代表读写模式打开文件  

  

print ("Truncating the file . Goodbye!")  

# 打印  Truncating the file . Goodbye!  

target.truncate()  

# 清空text.txt文件  

  

print 中悉("Now I'm going to ask you for three lines.")  

# 打印  Now I'm going to ask you for three lines.  

  

line1 = input("line 1: ")  

line2 = input("line 2: ")  

line3 = input("line 3: ")  

# 输入line1/2/3内容  

  

print ("I'm going to write these to the file.")  

# 打印  I'm going to write these to the file  

  

target.write(line1)  

target.write("\n")  

target.write(line2)  

target.write("\n")  

target.write(line3)  

target.write("\n")  

# 写入内容    

  

print ("And finally, we close it.")  

# 打印  And finally, we close it.  

target.close()

运行结果如下:

$ python ex16.py test.txt  

We're going to erase 'test.txt'.  

If you don't want that, hit CTRL-C (^C).  

If you do want that, hit RETURN.  

?  

Opening the file...  

Truncating the file.  Goodbye!  

Now I'm going to ask you for three lines.  

line 1: To all the people out there.  

line 2: I say I don't like my hair.  

line 3: I need to shave it off.  

I'老物m going to write these to the file.  

And finally, we close it.  

$

加分习题

①如果你觉得自己没有弄懂的话,用我们的老办法,在每一行之前加上注解,为自己理清思路。就算不能理清思路,你也可以知道自己究竟具体哪里没弄明白。

②写一个和上一个练习类似的脚本,使用 read 和 argv 读取你刚才新建的文件。

txt = "lx0016jft.txt"   

test = open(txt, "w")  

test.truncate()  

jftline1 = input(">>>>>line1:")  

jftline2 = input(">>>>>line2:")  

jftline3 = input(">>>>>line3:")  

jftline4 = input(">>>>>line4:")  

test.write(jftline1)  

test.write("\n")  

test.write(jftline2)  

test.write("\n")  

test.write(jftline3)  

test.write("\n")  

test.write(jftline4)  

test.write("\n")  

test.close()  

test = open("lx0016jft.txt")  

print (test.read())

这里在打印的时,必须得重新打开一次文档,百度查到的解释是,传送的数据还在内存中,并没有写入进文档,只有重新打开后,读取打印才能看到写入修改后的内容。

③文件中重复的地方太多了。试着用一个 target.write() 将 line1, line2, line3 打印出来,你可以使用字符串、格式化字符、以及转义字符。

[python] view plain copy

test.write(jftline1 + "\n" + jftline2 + "\n" + jftline3 + "\n" + jftline4 + "\n")

④找出为什么我们需要给 open 多赋予一个 'w' 参数。提示: open 对于文件的写入 *** 作态度是安全第一,所以你只有特别指定以后,它才会进行写入 *** 作。

如果你用 'w' 模式打开文件,那么你是不是还要 target.truncate() 呢?阅读以下 Python 的 open 函数的文档找找答案。

target.truncate() 是清空的意思,与“w”模式并不冲突,也并非后置条件。

常见问题回答

如果用了 'w' 参数, truncate() 是必须的吗?

看看加分习题 5。

'w' 是什么意思?

它只是一个特殊字符串,用来表示文件的访问模式。如果你用了 'w' 那么你的文件就是写入(write)模式。除了 'w' 以外,我们还有 'r' 表示读取(read), 'a' 表示追加(append)。

还有哪些修饰符可以用来控制文件访问?

最重要的是 + 修饰符,写法就是 'w+', 'r+', 'a+' ——这样的话文件将以同时读写的方式打开,而对于文件位置的使用也有些不同。

如果只写 open(filename) 那就使用 'r' 模式打开的吗?

是的,这是 open() 函数的默认工作方式。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12271835.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-24
下一篇 2023-05-24

发表评论

登录后才能评论

评论列表(0条)

保存