“Python foreach 2D -Array” Code-Antworten

Erstellen Sie ein 2D -Array in Python

def build_matrix(rows, cols):
    matrix = []

    for r in range(0, rows):
        matrix.append([0 for c in range(0, cols)])

    return matrix

if __name__ == '__main__':
    build_matrix(6, 10)
McBurd

Python foreach 2D -Array

for i in twodarray:
    for j in i:
        print j
slohobo

Ähnliche Antworten wie “Python foreach 2D -Array”

Fragen ähnlich wie “Python foreach 2D -Array”

Weitere verwandte Antworten zu “Python foreach 2D -Array” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen