Python脚本:语法错误

时间:2017-10-16 21:58:30

标签: python sensor raspberry-pi3 temperature

我正在尝试使用我的Raspberry Pi 3模型B编程DHT11温度和湿度传感器。我在shell上使用Python脚本,但由于语法错误而无法正常工作。Please find my script capture in the link below.我试图在raspberry pi终端上运行它,错误消息在print语句中。

1 个答案:

答案 0 :(得分:0)

您缺少print语句的括号。正确的语法是:

print("Temperature: ", temperature," C   humidity: ", humidity)

Python 3要求包含文本的打印语句位于("")内,插入的变量如下:

print(" text ", variable, "more text")