We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5e122b commit a991dadCopy full SHA for a991dad
1 file changed
04-list-dict/answer-questions.ipynb
@@ -403,7 +403,8 @@
403
"\n",
404
" 在这里我们使用的是字典来存储数据的对应的关系,以后大家学习 Pandas 时候会有更简单更方便的办法来存数据。\n",
405
" \n",
406
- "* 使用 whiel True 声明一个无限循环\n",
+ " \n",
407
+ "* 使用 while True 声明一个无限循环\n",
408
409
" 使用 input 提示输入 SKU,放到 sku 中\n",
410
@@ -636,7 +637,7 @@
636
637
"print(\"-\"*70)\n",
638
639
"print(\"现在 SKU-E 新品上市,要入库300件商品,请在 total 中新增一条相应记录\")\n",
- "sku_e = {\"sku\":\"SKU-E\", \"quituantity\":300}\n",
640
+ "sku_e = {\"sku\":\"SKU-E\", \"quantity\":300}\n",
641
"total.append(sku_e)\n",
642
"print(\"更新后数据:\",total)\n",
643
0 commit comments