码迷,mamicode.com
首页 > 编程语言 > 详细

Python IDLE或shell中切换路径

时间:2018-10-05 13:59:14      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:使用   编辑   pytho   get   切换   chdir   cd命令   编辑器   引号   

Python IDLE或shell中切换路径

在Python自带的编辑器IDLE中或者Python shell中不能使用cd命令,需要os模块的相关函数来操作。

具体如下:

import os  
os.getcwd() #获取当前路径  
os.chdir("D:\\test") #跳到目标路径下  
os.chdir(D:\\test) #单引号、双引号都可以

 

Python IDLE或shell中切换路径

标签:使用   编辑   pytho   get   切换   chdir   cd命令   编辑器   引号   

原文地址:https://www.cnblogs.com/keep-pure/p/9744445.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!