Python 脚本:语法错误

Python script: Syntax error

我正在尝试使用我的 Raspberry Pi 3 模型 B 对 DHT11 温度和湿度传感器进行编程。我在 shell 上使用 Python 脚本,但它不起作用因为这里是因为语法错误。 我试图在 raspberry pi 终端上 运行 它并且错误消息在打印语句中。

打印语句两边缺少括号。正确的语法是:

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

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

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