adb -s QSPI020404 shell ip addr show wlan0 | grep -oP '(?<=inet\s)\d+(\.\d+){3}'
上述是查看连接无线网,Android设备IP地址的指令,但是将其赋值给self.cmd_ip调用
打印的结果是 adb -s QSPI020404 shell ip addr show wlan0 | grep -oP '(?<=inet\s)\d+(\.\d+)3',大括号消失 。
f-string的举例如下:
上述的打印为:My name is Alice and I am 30 years old
在 Python 的 f-string 中,大括号 {}
用于表示将要插入变量值或表达式的位置
正确的函数应该如下:
内部的{}用来转义,外部表达式用来显示,打印的结果是 adb -s QSPI020404 shell ip addr show wlan0 | grep -oP '(?<=inet\s)\d+(\.\d+){3}'