python 示例

文件关闭属性 (File closed Property)

closed Property is an inbuilt property of File object (IO object) in Python, it can be used to check whether a file object (i.e. a file) is closed or not, this is a read-only property and returns a Boolean value (True – if file is closed, False – if file is not closed).

关闭属性是Python中文件对象(IO对象)的内置属性,可用于检查文件对象(即文件)是否关闭,这是只读属性,并返回布尔值(真) –如果文件已关闭,则为False –如果文件未关闭)。

Syntax:

句法:

    file_object.closed

Parameter(s):

参数:

  • None

    没有

Return value:

返回值:

The return type of this method is <class 'bool'>, it returns a Boolean value.

该方法的返回类型为<class'bool'> ,它返回一个布尔值。

Example:

例:

# Python File closed Property with Example
# opening files in various modes
file1 = open("myfile1.txt", "w")
file2 = open("myfile3.txt", "a")
file3 = open("myfile4.txt", "wb")
# checking files are closed or not
print("Before closing the files...")
print("file1.closed: ", file1.closed)
print("file2.closed: ", file2.closed)
print("file3.closed: ", file3.closed)
# closing the files
file1.close()
file2.close()
file3.close()
# checking files are closed or not
print("After closing the files...")
print("file1.closed: ", file1.closed)
print("file2.closed: ", file2.closed)
print("file3.closed: ", file3.closed)

Output

输出量

Before closing the files...
file1.closed:  False
file2.closed:  False
file3.closed:  False
After closing the files...
file1.closed:  True
file2.closed:  True
file3.closed:  True

翻译自: https://www.includehelp.com/python/file-closed-property-with-example.aspx

python 示例

python 示例_带有示例的Python文件关闭属性相关推荐

  1. python示例_带有示例的Python功能指南

    python示例 Python函数简介 (Introduction to Functions in Python) A function allows you to define a reusable ...

  2. lock_sh 示例_带有示例的Python date __str __()方法

    lock_sh 示例 Python date .__ str __()方法 (Python date.__str__() Method) date.__str__() method is used t ...

  3. python 示例_带有示例的Python File write()方法

    python 示例 文件write()方法 (File write() Method) write() method is an inbuilt method in Python, it is use ...

  4. python 示例_带有示例的Python File close()方法

    python 示例 文件close()方法 (File close() Method) close() method is an inbuilt method in Python, it is use ...

  5. python 示例_带有示例的Python File read()方法

    python 示例 文件read()方法 (File read() Method) read() method is an inbuilt method in Python, it is used t ...

  6. python 示例_带有示例的Python date timetuple()方法

    python 示例 Python date.timetuple()方法 (Python date.timetuple() Method) date.timetuple() method is used ...

  7. python 示例_带有示例的Python date isocalendar()方法

    python 示例 Python date.isocalendar()方法 (Python date.isocalendar() Method) date.isocalendar() method i ...

  8. python 示例_带有示例的Python字典update()方法

    python 示例 字典update()方法 (Dictionary update() Method) update() method is used to update the dictionary ...

  9. python 示例_带有示例的Python字典popitem()方法

    python 示例 字典popitem()方法 (Dictionary popitem() Method) popitem() method is used to remove random/last ...

最新文章

  1. [Android实例] 最全的Android开发资源整理--进阶必备
  2. 图的单源最短路径:Dijkstra算法实现
  3. 【Matlab】模式识别——聚类算法集锦
  4. 百分比怎么在java里显示_如何在java中找到百分比我的代码给出错误?
  5. ASP.NET伪静态的实现及伪静态的意义
  6. java代码控制别人电脑_java实现电脑远程控制完整源代码(转)
  7. 小球碰撞python代码_Java 实现小球碰撞GUI
  8. MongoDb学习(五)--Gridfs--上传下载
  9. Maven第9篇:多环境构建
  10. 如何申请163 VIP邮箱?163 VIP邮箱如何注册登录?
  11. php判断图片有没有ps过,你知道你PS过的图片会侵犯别人的权利吗?
  12. Celery在Django下安装配置
  13. python输入esc退出循环_如何用Esc键停止GhPython或者RhinoPython脚本运行
  14. 如何使用阿里云搭建自己的云主机(超详细)
  15. rocketmq内外网同时访问
  16. oracle utl_file fcopy,ORACLE之UTL_FILE包详解
  17. 神通广大的WiFi劫持工具:Mana
  18. VMware之SNAT与DNAT
  19. 套现15亿的摩拜创始人胡玮炜,后来怎么样了?
  20. 在Ubuntu上安装hadoop(截图太多,干脆来个大截图)

热门文章

  1. mysql迭代查询并分页_mysql 数据库 分页查询优化
  2. 二级计算机excel以宏保存,Excel宏保存
  3. java中的module是什么意思_Angular - 组件中module.id的含义是什么?
  4. php 在函数里打开链接,JavaScript中打开链接的几种方法介绍
  5. 自己写一个H5项目CI系统
  6. 4 张动图解释为什么(什么时候)使用 Redux
  7. django内置服务器
  8. c语言 static的用法
  9. Wordpress prettyPhoto插件跨站脚本漏洞
  10. SQL 异常处理 Begin try end try begin catch end catch--转