您现在的位置是:课程教程文章

python中file是什么文件格式

2023-12-18 18:06课程教程文章 人已围观

python中file是一个变量,不是一个文件格式

将open函数赋值给变量file只是为了使代码写起来更方便更美观

示例如下:

使用变量file之前:

open("ax.txt", 'a').write('1234566')
open("ax.txt", 'a').close()

使用变量file之后:

file = open("ax.txt", 'a')
file.write('1234566')
file.close()

更多Python知识,请关注:Python自学网!!

课程教程:python中file是什么文件格式

上一篇:python 2.6 pip安装失败

下一篇:没有了

站点信息

  • 文章统计篇文章