You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement the use of the following items based on variables that we have in Python passed as parameter. Are they:
tables based on lists
# call: list([tr list], [tr[] list of list], {class="table", id="tb-one"} optional attributes, [tfoot list optional])
# result:
<table class="table" id="tb-one">
<th>
... context of tr list
</th>
<tr>
<td>... list content columns</td>
</tr>
... when exists register on list <tr>...</tr>...
<tfoot>
<td> list foot, if exists </td>
</tfoot>
</table>
Remember to change README.md
The text was updated successfully, but these errors were encountered:
Implement the use of the following items based on variables that we have in Python passed as parameter. Are they:
tables
based onlists
The text was updated successfully, but these errors were encountered: