python中路径及目录的表示方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中路径及目录的表示方法相关的知识,希望对你有一定的参考价值。
参考技术A 因此在python中,下面这两种写法都是可以接受的。"c:/test/my doc"
"c:\\test\\my doc"
1、当前目录:os.listdir(".") f1 = open('xugang.txt','w')
2、父目录:os.listdir("..") f1 = open('../xugang.txt','w')
3、根目录写法一:os.listdir('/') f1 = open('/xugang.txt','w')
4、根目录写法二:os.listdir('\') f1 = open('\xugang.txt','w')
5、子目录:os.listdir('mytext') f1 = open('mytext/xugang.txt','w')
(备注:假设当前目录中有一个名为mytext的子目录要访问 )
以上是关于python中路径及目录的表示方法的主要内容,如果未能解决你的问题,请参考以下文章