I\'m trying to create a NumPy array/matrix (Nx3) with mixed data types (string, integer, integer). But when I\'m appending this matrix by adding some data, I get an error: <
I don't believe you can make an array out of more than one data type. You can, however, make a list with more than one data type.
list = ["TEXT", 1, 1] print(list)
gives
['TEXT', 1, 1]