博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 示例_带有示例的Python文件关闭属性
阅读量:2531 次
发布时间:2019-05-11

本文共 1390 字,大约阅读时间需要 4 分钟。

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 modesfile1 = open("myfile1.txt", "w")file2 = open("myfile3.txt", "a")file3 = open("myfile4.txt", "wb")# checking files are closed or notprint("Before closing the files...")print("file1.closed: ", file1.closed)print("file2.closed: ", file2.closed)print("file3.closed: ", file3.closed)# closing the filesfile1.close()file2.close()file3.close()# checking files are closed or notprint("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:  Falsefile2.closed:  Falsefile3.closed:  FalseAfter closing the files...file1.closed:  Truefile2.closed:  Truefile3.closed:  True

翻译自:

python 示例

转载地址:http://jhxzd.baihongyu.com/

你可能感兴趣的文章
sql server dba
查看>>
visualvm
查看>>
docker(4):coreos+docker+rancher真厉害
查看>>
设计模式之代理模式,学习笔记
查看>>
在Qsys中创建用户自定义IP
查看>>
【leetcode】Container With Most Water
查看>>
Python -- machine learning, neural network -- PyBrain 机器学习 神经网络
查看>>
一道dp题目
查看>>
mysql中间件研究(tddl atlas cobar sharding-jdbc)
查看>>
Cast-128 加密算法和 MyPassWord 的破解
查看>>
4.28下午 听力611
查看>>
ActiveMQ学习笔记(1)----初识ActiveMQ
查看>>
Java与算法之(2) - 快速排序
查看>>
Windows之IOCP
查看>>
机器学习降维之主成分分析
查看>>
CTP2交易所成交回报
查看>>
WebSocket & websockets
查看>>
《机器学习实战》学习笔记第二章 —— K-近邻算法
查看>>
uni-app 引入本地iconfont的正确姿势以及阿里图标引入
查看>>
DSB
查看>>