How to create a sequence of integers using numpy in Python

2 Answers

0 votes
import numpy as np

sequence = np.arange(1, 13, 2) 

print(sequence)


'''
run:

[ 1  3  5  7  9 11] 

'''

 



answered Jan 24, 2019 by avibootz
0 votes
import numpy as np

sequence = np.arange(13, 1, -2) 

print(sequence)


'''
run:

[13 11  9  7  5  3]

'''

 



answered Jan 24, 2019 by avibootz
...