0
下面我有下面的代碼是應該得到CPU溫度。「列表索引超出範圍」
import wmi
w = wmi.WMI()
print w.Win32_TemperatureProbe()[0].CurrentReading
當我運行它,我得到以下警告然而:
Traceback (most recent call last):
File "<string>", line 244, in run_nodebug
File "<module1>", line 3, in <module>
IndexError: list index out of range
這是Windows 7,順便說一句。
出於某種原因,蟒蛇似乎並不喜歡你的語法。 – rectangletangle 2010-07-17 02:26:44
唯一缺少的是我添加的「import wmi」 - 我假設已經在上面的代碼中。否則,它會直接從Python終端複製/粘貼。如果你在這裏產生實際的錯誤信息,也許我可以幫你弄清楚你的問題。 – ars 2010-07-17 02:44:43