模块
是一个包含所有定义的函数和变量的文件,其后缀名是.py。模块可以被别的程序引入,以使用该模块中的函数等功能。
os模块
>>> import os
>>> os.getcwd()
'D:\\学习\\python学习\\code\\day15'
>>> os.chdir('E:\\')
>>> os.getcwd( )
'E:\\'
>>> os.listdir('e:\\')
['$RECYCLE.BIN', '5.5.5018.0', '8a991dc491341f75ce2680ffe10c6523', 'android', 'CloudMusic', 'E盘android', 'pagefile.sys', 'py', 'QMDownload', 'QQLive', 'qqmassage', 'QQMusicCache', 'steam', 'System Volume Information', 'Tencent', 'tim', 'WUDownloadCache', '暴雪', '英雄时刻']
os path模块
>>> os.path.join('argument')
'argument'
>>> os.path.getatime('E:\\lwt')
1601383543.6471684
>>> time.gmtime(os.path.getatime('E:\\lwt'))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'time' is not defined
>>> import time
>>> time.gmtime(os.path.getatime('E:\\lwt'))
time.struct_time(tm_year=2020, tm_mon=9, tm_mday=29, tm_hour=12, tm_min=45, tm_sec=43, tm_wday=1, tm_yday=273, tm_isdst=0)
>>>