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