码迷,mamicode.com
首页 > 编程语言 > 详细

python打印电脑串口的信息

时间:2019-03-19 10:22:55      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:utf-8   python   range   ati   ports   pre   信息   电脑   from   

 

 1 # -*- coding:utf-8 -*-
 2 
 3 from serial.tools.list_ports import comports
 4 
 5 port_list = list(comports())
 6 if len(port_list) == 0:
 7     print(Not found Serial Ports)
 8 else:
 9     for i in range(len(port_list)):
10         print(port_list[i])  #print the serial port infomation

 

python打印电脑串口的信息

标签:utf-8   python   range   ati   ports   pre   信息   电脑   from   

原文地址:https://www.cnblogs.com/TwCsLj/p/10556720.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!