Assigning value to variable

I have been reading a few of the neural network codes and came across the following:
hidden_ele = [256]
Is it just assigning the size to the variable or is it assigning the variable with the value 256? I was not exactly sure what it is doing.

it is definition of list hidden_ele with one value of 256.

1 Like