Answers for "inishalize a 2d array python"

0

initialise a 2d array python

x = [[foo for i in range(10)] for j in range(10)]
# x is now a 10x10 array of 'foo' (which can depend on i and j if you want)
Posted by: Guest on April-16-2020
0

python initialize a 2d array

bar = [SOME EXPRESSION for item in some_iterable]
Posted by: Guest on November-09-2020

Python Answers by Framework

Browse Popular Code Answers by Language