在破折号python中将单选按钮添加到html表

时间:2019-05-23 06:31:31

标签: python html html-table hyphen

我想在破折号python的html表中添加单选按钮。

我尝试了以下操作

 def generate_table(dataframe, max_rows=10):
     return html.Table(
       # Header
       [html.Tr([html.Th(col) for col in dataframe.columns])] +

       # Body
       [html.Tr([
        html.Td(dataframe.iloc[i][col]) for col in dataframe.columns
        ]) for i in range(min(len(dataframe), max_rows))]
    )

我需要在表格左侧添加单选按钮

0 个答案:

没有答案