python 语法问题

from serial import Serial

from serial.tools.list_ports import comports

from websocket_server import WebsocketServer

@route('/')

def index(info=''):

    return template('index.html', sers=[(desc, port) for port, desc, hwid in comports()],

                                  ws_url=request.url.replace('http', 'ws').replace('8080', '9978'))

template中 sers=[(desc, port) for port, desc, hwid in comports()]
这是什么语法?

开心每一天1111
浏览 258回答 2
2回答

万千封印

是Python 的推导式(comprehensions)

翻翻过去那场雪

这是个列表生成式 
打开App,查看更多内容
随时随地看视频慕课网APP