Python命令行里一些入门的函数
- 习惯了linux下面的cd、pwd、等等这样便捷的改变工作目录的函数了吧,现在在python的命令行IDLE或者说是Python Shell里面如何实现呢?
- 下面的两个个函数就可帮你实现了。
- os.chdir(path)
-
Change the current working directory to path.
Availability: Unix, Windows.
- os.getcwd()
-
Return a string representing the current working directory.
Availability: Unix, Windows.
os.chdir("D:\\STUDY\\JAVA\\workplace\\helios\\PyTest\\test") >>> os.getcwd <built-in function getcwd> >>> os.getcwd() 'D:\\STUDY\\JAVA\\workplace\\helios\\PyTest\\test'
1. 任何单位或个人认为本博的内容可能涉嫌侵犯其合法权益,可以及时的联系我(olenet#126#com),我会立即更正或删除。
2. 欢迎转载,记得贴链接^_^。www.cnblogs.com/OleNet