Python for 在 HTML 片段中循环
Python for loop in HTML snippet
有没有人知道如何将这段代码重写成更干净的代码?
我尝试使用 for 循环但得到了这个:
您可以遍历 rows_amount 并像这样添加它。
table_html+='<tr>'
for row in schedule:
for i in range(rows_amount):
table_html+='<td>'+str(row[i])+'</td' #adding it to string
有没有人知道如何将这段代码重写成更干净的代码?
我尝试使用 for 循环但得到了这个:
您可以遍历 rows_amount 并像这样添加它。
table_html+='<tr>'
for row in schedule:
for i in range(rows_amount):
table_html+='<td>'+str(row[i])+'</td' #adding it to string