We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a16ef2b commit ade78e4Copy full SHA for ade78e4
0007-Array-Functions/array_functions.py
@@ -31,3 +31,6 @@
31
# Alternatively, we can use `del`
32
del int_array[1] # Removes element at index 1 (2)
33
print("After using del to remove element at index 1:", int_array)
34
+
35
+# Accessing elements
36
+print("Element at index 1:", list_array[1])
0 commit comments