CSCI 152

CSCI 152: LAB

Skill set for this LAB:

Use the following statement for List initialization:
a = [[ 0 for i in range(COL)] for j in range(ROW)]
The above line will create a list of ROW rows and COL columns and assign value 0 to each element