Python 文件方法
检查文件是否可读:
f = open("demofile.txt", "r") print(f.readable())
运行实例
如果文件是可读的,则 visible() 方法返回 True,否则返回 False。
file.readable()
无参数。