VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 编程开发 > python爬虫 >
  • File的Close方法

File的Close方法
1. close() 方法用于关闭一个已打开的文件;
2. 关闭后的文件不能再进行读写操作, 否则会触发ValueError 错误;
3.  close() 方法允许调用多次。
4. 当 file 对象,被引用到操作另外一个文件时,Python 会自动关闭之前的 file 对象。
5. 使用 close() 方法关闭文件是一个好的习惯。

Python实例
with open("writeline.txt",'r') as file1:
    print("文件内容是:")
    for line in file1:
        print(line)
    print("文件输出完成!")

with open("writeline2.txt","a") as file1:
    file1.write("hello,world!\n")
    file1.write("this is second line\n")
    file1.close()

Python 以二进制方式读取图片
with open("1.jpg","rb") as file1:
    content=file1.read()
    print(content)


相关教程