1. 程式人生 > >[Python Study Notes]電池信息

[Python Study Notes]電池信息

time print rul message per not quic psutil htm

‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘
>>文件: 電池信息.py
>>作者: liu yang
>>郵箱: [email protected]

‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import sys,os
import psutil

def battery_message():
    ba=psutil.sensors_battery()
    # 未充電:sbattery(percent=13, secsleft=4294967295, power_plugged=False)
    # 在充電:sbattery(percent=14, secsleft= < BatteryTime.POWER_TIME_UNLIMITED: -2 >, power_plugged = True)
    battery=ba.percent
    if ba.power_plugged:
        power="正在充電中..."
    else:
        power="未充電"
    print(‘電量剩余:%d    電源狀態:%6s‘%(battery,power))

if __name__ == ‘__main__‘:
    battery_message()

[Python Study Notes]電池信息