|
使用os模块
import os os.path.exists(hh.txt) 返回:Trueos.path.exists(hh.txt) 返回:False
上面的代码是对一个文件进行判断,它还有判断一个文件夹是否存在,例:
import os os.path.exists(test_dir) 输出:Trueos.path.exists(no_exist_dir) 输出:False
在上段的代码中,我们可以知道在os模块中,不管是对文件还是文件夹进行判断,判断的方法都是一样的,
都使用了os.path.exits()的方法。
os.access判断文件是否存在,如果存在,返回true
os.access(filepathos.F_OK): xl = xlrd.open_workbook(filepath) table = xl.sheets()[] data = table.cell().value table.nrows
参考:https://www.bbsmax.com/A/RnJWppEo5q/
参考:https://blog.csdn.net/weixin_35682224/article/details/112367980
Archiver|手机版|科学网 ( 京ICP备07017567号-12 )
GMT+8, 2024-11-24 06:24
Powered by ScienceNet.cn
Copyright © 2007- 中国科学报社