Answers for "1d array operations in python"

0

1d array operations in python

arr = [ 1, 2 ,3, 4, 5]
print (arr)
print (arr[2])
print (arr[4])

[1, 2, 3, 4, 5]
3
5
Posted by: Guest on February-28-2022

Python Answers by Framework

Browse Popular Code Answers by Language