Générer Matrix Python

matrix = [[0 for column in range(3)]for row in range(3)]
# Generates a 3x3 bidimensional array
codewi