Answers for "declare an array in python with size"

4

python declare array of size n

>>> n = 5                     #length of list
>>> list = [None] * n         #populate list, length n with n entries "None"
>>> print(list)
[None, None, None, None, None]

>>> list.append(1)            #append 1 to right side of list
>>> list = list[-n:]          #redefine list as the last n elements of list
>>> print(list)
[None, None, None, None, 1]

>>> list.append(1)            #append 1 to right side of list
>>> list = list[-n:]          #redefine list as the last n elements of list
>>> print(list)
[None, None, None, 1, 1]

>>> list.append(1)            #append 1 to right side of list
>>> list = list[-n:]          #redefine list as the last n elements of list
>>> print(list)
[None, None, 1, 1, 1]
Posted by: Guest on November-14-2020
0

create array with unknown size in python

a = np.array([])
for x in y:
    a = np.append(a, x)
Posted by: Guest on November-01-2020

Code answers related to "declare an array in python with size"

Python Answers by Framework

Browse Popular Code Answers by Language