python得到电脑的开机时间方法
如下所示:
#先下载psutil库:pip install psutil import psutil import os,datetime def main(): print "电脑的开机时间", #调用psutil.boot_time()函数返回开机的时间戳 dt = datetime.datetime.fromtimestamp(psutil.boot_time()) #返回一个datetime对象 print dt.strftime("%Y-%m-%d,%H:%M:%S") if __name__=="__main__": main()
相关推荐
lklong 2020-11-22
zhangbingb 2020-11-12
LeeHDsniper 2020-11-05
橄榄 2020-11-03
一路到黑 2020-10-30
89286330 2020-10-29
juary 2020-10-28
邓肯 2020-10-20
AI启蒙研究院 2020-10-16
snmplink 2020-10-16
Trent 2020-10-13
89539834 2020-09-16
80296334 2020-09-16
digwtx 2020-09-14
jipengx 2020-09-10
andonliu 2020-09-03
chaochao 2020-08-31
luobotoutou 2020-08-17
SeetyST 2020-08-13