我正在用 Python 制作一个小游戏,对此我还是很陌生。我正在尝试使用导入访问另一个文件中的变量,但它一直说
AttributeError:模块 'core temp' 没有属性 'ct'
这是我试图运行的代码:
elif cmd == "temp":
if core.ct < 2000:
print(colored("Core temperature: "+core.ct+"°C", "green"))
elif core.ct < 4000:
print(colored("Core temperature: "+core.ct+"°C", "yellow"))
elif core.ct >= 3000:
print(colored("Core temperature: "+core.ct+"°C", "red"))
我正在像这样导入 coretemp:import coretemp as core
这是 coretemp.py 中的代码:
from time import sleep as wait
import coolant as c
ct = 10
while True:
if c.coolactive == False:
ct = ct + 1
wait(.3)
else:
ct = ct - 1
wait(1)
我已经被这个问题困了很久了!
PS:对不起,如果格式不正确,我在移动设备上,这很难。