我已经开始学习python,我对附加功能有疑问。
我在迭代中有一个工作表,该工作表具有以下结构:
foreach($subCategories as $subCategory) {
echo "<div id='name'>" . $subCategory["name"] . "</div>
<div id='price'>" . $subCategory["price"] . "</div>";
}
在迭代之外,我创建了一个具有相同结构的空表:
A B C D
x x x x
x x x x
x x x x
我希望在每次迭代结束时将工作表中的行添加到主表中。
我一直尝试如下添加:
A B C D
但是,它不断显示以下错误:
Main_Table = Main_Table.append(Wokring_Table, ignore_index=True)
任何帮助/建议将不胜感激。
谢谢。