Rumah > Artikel > pembangunan bahagian belakang > python目录如何修改(实例解析)
今天这篇文章中我们来了解一下python中目录之一方面的知识,这文章之中我们来了解一下python如何更改目录名称这一方面的知识。
chdir()方法
可以用chdir()方法来改变当前的目录。chdir()方法需要的一个参数是你想设成当前目录的目录名称。
语法:
os.chdir("newdir")
例子:
下例将进入"/home/newdir"目录。
# !/usr/bin/python # -*- coding: UTF-8 -*- import os # 将当前目录改为"/home/newdir" os.chdir("/home/newdir")
getcwd()方法:
getcwd()方法显示当前的工作目录。
语法:
os.getcwd()
例子:
下例给出当前目录:
# !/usr/bin/python # -*- coding: UTF-8 -*- import os # 给出当前的目录 print os.getcwd()
以上就是这篇文章所讲的全部内容python目录方面的如何修改目录名称。希望所说的内容以及所举的例子能对你有所帮助。
更多相关知识,请访问php中文网Python教程栏目。
Atas ialah kandungan terperinci python目录如何修改(实例解析). Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!