Numpy: indexing 1d array
import numpy as np
a = np.array([1, 1, 2, 3, 5, 8, 13, 21, 34])
print(a) # [ 1 1 2 3 5 8 13 21 34]
print(a[4]) # 5
print(a[2:5]) # [2 3 5]
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
import numpy as np
a = np.array([1, 1, 2, 3, 5, 8, 13, 21, 34])
print(a) # [ 1 1 2 3 5 8 13 21 34]
print(a[4]) # 5
print(a[2:5]) # [2 3 5]