os模块提供了不少与操作系统相关联的函数。```python import os os.getcwd() # 返回当前的工作目录C:\\Python34 os.chdir(/server/accesslogs) # 修改当前的工作目录 o