Python How to Return value in while loop

前端 未结 2 1510
星月不相逢
星月不相逢 2021-01-21 04:50

When put return in while loop the loop will stop How to fix it?

ser = serial.Serial(
    port=\'COM5\',
    baudrate = 9600,
    timeout=1)
while 1:
    x=str(se         


        
2条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-21 05:29

    u can try this one

    while 1:
        x=str(ser.readline())
        x = re.findall("\d+\.\d+", x)
        x = float(x[0])
    return x
    

提交回复
热议问题