0
我在Windows 7中使用Python3,我安裝了pyserial 3.3。我創建了一個與這些線路碼serial.py文件名爲:Python屬性錯誤:模塊「串行」沒有屬性'串行'
import serial
ser = serial.Serial('COM4', 9600, timeout=0)
ser.write(b'mymessage')
,它會顯示此錯誤消息:
attributeError: module 'serial' has no attribute 'Serial'
在他們documentation其他所有樣品是一樣的,我不能使用任何其中。