Python3基础 os chdir 改变工作目录
2021-05-22 10:29
标签:-- form read blog nbsp 解释 nload com 改变 ? ? ? ? Python具有开源、跨平台、解释型、交互式等特性,值得学习。 Python3基础 os chdir 改变工作目录 标签:-- form read blog nbsp 解释 nload com 改变 原文地址:https://www.cnblogs.com/xingchuxin/p/9737237.html
code
coder@Ubuntu:~$ source activate py37
(py37) coder@Ubuntu:~$ ipython
Python 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:14:56)
Type ‘copyright‘, ‘credits‘ or ‘license‘ for more information
IPython 6.4.0 -- An enhanced Interactive Python. Type ‘?‘ for help.
In [1]: import os
In [2]: os.getcwd() # 当前的工作目录
Out[2]: ‘/home/coder‘
In [3]: os.chdir("/home") # 改变供祖宗目录
In [4]: os.getcwd()
Out[4]: ‘/home‘
In [5]: exit
(py37) coder@Ubuntu:~$ source deactivate
coder@Ubuntu:~$
resource
Python的设计哲学:优雅,明确,简单。提倡用一种方法,最好是只有一种方法来做一件事。
代码的书写要遵守规范,这样有助于沟通和理解。
每种语言都有独特的思想,初学者需要转变思维、踏实践行、坚持积累。
文章标题:Python3基础 os chdir 改变工作目录
文章链接:http://soscw.com/index.php/essay/87983.html