ich habe folgendes Problem. Ich will eine leere Matrix (3x3) erzeugen, die ich nach und nach mit strings füllen möchte.
Code: Alles auswählen
import numpy as np
matrix = np.empty((3, 3), dtype=str)
matrix[0, 0] = 'Test1'
print(matrix)
Gruß
Michael