标签:dirname 不同 div col 做了 file 读取方法 int print
使用Python时,经常用到文件的路径读取,做了path方法的不同读取方式整理:
import os #os.path.dirname(__file__)返回的是.py文件的目录 path1=os.path.dirname(__file__) print(path1) #os.path.abspath(__file__)返回的是.py文件的绝对路径(完整路径) path2=os.path.abspath(__file__) print(path2) #组合使用 path3=os.path.dirname(os.path.abspath(__file__)) print(path3) #os.path.join()拼接路径 path4= os.path.join(os.path.dirname(os.path.abspath(__file__)),‘1.py‘) print(path4)
标签:dirname 不同 div col 做了 file 读取方法 int print
原文地址:https://www.cnblogs.com/liuyi1804/p/11610920.html