小米9Pro有没有双频WIFI
1、没有明确的信息表明小米9Pro支持双频WiFi,但是
import
subprocess
# 执行iwlist命令,获取WiFi接口的信息
output
=
subprocess
.
check_output
;">[
'iwlist'
,
'wlan0'
,
'freq'
]
)
# 解析输出结果,查看是否存在2.4GHz和5GHz的频段
if
b'2.4 GHz'
in
output
and
b'5 GHz'
in
output
:
;">'This device supports dual-band WiFi.'
)
else
:
;">'This device does not support dual-band WiFi.'
)
版权申明:文章由用户发布,不代表本网站立场,如果侵权请联系我们删除。