Python/ref file readable

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python File可读()方法

❮档案方法

检查文件是否可读:

    f = open("demofile.txt", "r")
print(f.readable())

定义和用法

The readable() 方法返回 True 如果文件可读, False 如果不。

句法

file.readable()
  

参数值

没有参数。

❮档案方法