Blogger Information
Blog 75
fans 0
comment 0
visits 55214
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
小猿圈python3之os.chdir(改变当前路径方法)介绍
聆听的博客
Original
1142 people have browsed it

学python的朋友们都知道python中各个接口都是通过模块封装而成的,小猿圈今天带大家了解一下os模块中一个小小的改变路径的方法,虽然知识点小,但是十分重要,大家认真看一定可以很容易掌握!

1,方法:os.chdir()
import os
os.chdir(r'C:\python36\test_chdir')
说明:chdir()改变当前路径;如果有特殊字符,需要用r”强制python不转义;

实例:

实例

import os, sys
path = "/tmp"

# 查看当前工作目录
retval = os.getcwd()
print ("当前工作目录为 %s" % retval)

# 修改当前工作目录
os.chdir( path )

# 查看修改后的工作目录
retval = os.getcwd()

print ("目录修改成功 %s" % retval)

运行实例 »

点击 "运行实例" 按钮查看在线实例

输出结果:

当前工作目录为 /www
目录修改成功 /tmp

通过os模块可以简单优雅的修改当前目录,大家学会了吗?感觉没问题的朋友自己可以建一个目录练习一下,简单的查看修改和修改后重新查看一定要掌握,ok,今天的小节就到这里了,想要学习更多小知识点的朋友,可以去小猿圈学习,悄悄告诉你,小编也是从那取来的精。

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post