操作系统接口
os模块提供了一些与操作系统交互的函数:
>>> import os
>>> os.getcwd() # Return the current working directory
'C:\\Python36'
>>> os.chdir('/server/accesslogs') # Change current working directory
>>> os.system('mkdir today') # Run the command mkdir in the system shell
0
用import os而不是from os import *。否则os.open()会覆盖内置函数open()。
对os这样的大型模块, 内置的open()和help()函数非常有用:
>>> import os
>>> dir(os)
<returns …