CPU温度

作者: ww4u | 来源:发表于2018-07-28 09:22 被阅读0次

    读取CPU温度

    # -*- coding: utf-8 -*-  
    # 打开文件  
    file = open("/sys/class/thermal/thermal_zone0/temp")  
    # 读取结果,并转换为浮点数  
    temp = float(file.read()) / 1000  
    # 关闭文件  
    file.close()  
    # 向终端控制台打印  
    print "temp : %.3f" %temp
    
    

    相关文章

      网友评论

          本文标题:CPU温度

          本文链接:https://www.haomeiwen.com/subject/qsgvmftx.html