From d3e908753705b27343117a9974ad36011ed5e85e Mon Sep 17 00:00:00 2001 From: jcon7654 Date: Thu, 28 Aug 2025 14:12:10 -0700 Subject: [PATCH] Correcting list reference from nums to words --- Week_04.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Week_04.ipynb b/Week_04.ipynb index 7ee104c..f060728 100644 --- a/Week_04.ipynb +++ b/Week_04.ipynb @@ -502,7 +502,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": null, "metadata": { "collapsed": true }, @@ -512,7 +512,7 @@ "\n", "words = ['ball', 'base']\n", "\n", - "nums.insert(0, 'glove') # first number is the index, second is the value" + "words.insert(0, 'glove') # first number is the index, second is the value" ] }, {