Skip to content

Commit 824a11b

Browse files
committed
Adding readme file for Array Functions in Python
1 parent 7b5f758 commit 824a11b

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

0007-Array-Functions/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Array Functions in Python
2+
3+
This program demonstrates the basic use and operations on arrays in Python using the `array` module. It covers how to create an integer array, add and remove elements, and manipulate array data.
4+
5+
## Getting Started
6+
7+
This program is designed to run in a Python environment. Ensure you have Python installed (Python 3.x is recommended).
8+
9+
### Prerequisites
10+
11+
This script uses Python's built-in `array` module, so no additional packages are required.

0007-Array-Functions/array_functions.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,3 @@
3131
# Alternatively, we can use `del`
3232
del int_array[1] # Removes element at index 1 (2)
3333
print("After using del to remove element at index 1:", int_array)
34-
35-

0 commit comments

Comments
 (0)