From f50273935d3a6e03a16b04d8e649fe74465740b2 Mon Sep 17 00:00:00 2001 From: Denis wanjala <61288857+Deniswanja@users.noreply.github.com> Date: Mon, 1 Feb 2021 12:39:17 -0500 Subject: [PATCH] Update arrays.py --- source/week-2/collections/arrays.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/source/week-2/collections/arrays.py b/source/week-2/collections/arrays.py index 8cd124f..8b13789 100644 --- a/source/week-2/collections/arrays.py +++ b/source/week-2/collections/arrays.py @@ -1,10 +1 @@ -# importing array -from array import array -# decalare and assign arrays -scores = array('d') - -# adding items to an array -scores.append(97) -scores.append(98) -print(scores) \ No newline at end of file