Python判断对象是否为文件对象(file object)的三种方法示例
作者:zx 时间:2021-05-27 09:46:17
文件操作是开发中经常遇到的场景,那么如何判断一个对象是文件对象呢?下面我们总结了3种常见的方法。
方法1:比较类型
第一种方法,就是判断对象的type是否为file
>>> fp = open(r"/tmp/pythontab.com")
>>> type(fp)
<type 'file'>
>>> type(fp) == file
True
注意:该方法对于从file继承而来的子类不适用, 看下面的实例
class fileDetect(file):
pass # 中间代码无所谓,直接跳过不处理
fp2 = fileDetect(r"/tmp/pythontab.com")
fileType = type(fp2)
print(fileType)
结果:
<class '__main__.fileDetect'>
方法2:isinstance方法
要判断一个对象是否为文件对象(file object),可以直接用isinstance()判断。
如下代码中,open得到的对象fp类型为file,当然是file的实例,而filename类型为str,自然不是file的实例
>>> isinstance(fp, file)
True
>>> isinstance(fp2, file)
True
>>> filename = r"/tmp/pythontab.com"
>>> type(filename)
<type 'str'>
>>> isinstance(filename, file)
False
方法3:推测法
在python中,类型并没有那么重要,重要的是”接口“。如果它走路像鸭子,叫声也像鸭子,我们就认为它是鸭子(起码在走路和叫声这样的行为上)。
按照这个思路我们就有了第3中判断方法:判断一个对象是否具有可调用的read,write,close方法(属性)。
参看:http://docs.python.org/glossary.html#term-file-object
def isfile(f):
"""
Check if object 'f' is readable file-like
that it has callable attributes 'read' , 'write' and 'close'
"""
try:
if isinstance(getattr(f, "read"), collections.Callable) \
and isinstance(getattr(f, "write"), collections.Callable) \
and isinstance(getattr(f, "close"), collections.Callable):
return True
except AttributeError:
pass
return False
来源:https://www.pythontab.com/html/2018/pythonhexinbiancheng_1015/1362.html
标签:Python,文件对象,file,object
0
投稿
猜你喜欢
PHP count()函数讲解
2023-06-04 11:46:41
python list 合并连接字符串的方法
2021-12-18 09:35:30
php获取客户端IP及URL的方法示例
2024-05-03 15:49:01
ASP 关于动态数据显示页面得锚点
2007-11-04 20:28:00
Python入门教程(二)Python快速上手
2023-10-16 08:54:09
Django 外键的使用方法详解
2022-10-16 14:30:51
asp.net DropDownList实现二级联动效果
2023-07-23 07:48:41
python manim实现排序算法动画示例
2021-11-10 10:41:58
如何利用饰器实现 Python 函数重载
2022-10-16 20:42:41
python解决pandas处理缺失值为空字符串的问题
2021-10-21 09:01:38
python模块的安装以及安装失败的解决方法
2023-09-14 06:33:04
某一公司的ASP面试题
2011-09-15 20:50:20
python数字图像处理图像的绘制详解
2022-05-29 07:33:49
python+mysql实现简单的web程序
2024-01-15 12:31:58
js算法实例之字母大小写转换
2024-04-16 08:52:05
python实现从ftp服务器下载文件的方法
2023-08-02 20:50:54
JS实现简单的二元方程计算器功能示例
2024-05-02 17:39:30
Python使用微信itchat接口实现查看自己微信的信息功能详解
2021-07-29 16:07:20
定制FileField中的上传文件名称实例
2022-06-07 14:21:05
ASP动态页服务器端的处理原理
2007-09-14 10:07:00