I have a 2d array:
[[], ['shotgun', 'weapon'], ['pistol', 'weapon'], ['cheesecake', 'food'], []]
How do I call a value from it? For example I want to print (name + " " + type) and get
shotgun weapon
I can’t find a way to do so. Somehow print list[2][1] outputs nothing, not even errors.
Remember a couple of things,
mylist[0]would give[]similarly,
mylist[1][0]would give'shotgun'