“Charaktermatrix Eingabepython” Code-Antworten

So geben Sie 2-D-Array in Python ein

matrix = [input().split() for i in range(no_of_rows)] # if only row is given and the number of coloumn has to be decide by user
matrix= [[input() for j in range(no_of_cols)] for i in range(no_of_rows)] # if both row and coloumn has been taken as input from user
Clean Chamois

Charaktermatrix Eingabepython

arr=[['h', 'e', 'l', 'l', 'o'],
       ['s', 'n', 'a', 'k', 'e'],
       ['p', 'l', 'a', 't', 'e']]

arr1=np.array(arr)
print(arr1)
Shiny Shrew

Ähnliche Antworten wie “Charaktermatrix Eingabepython”

Fragen ähnlich wie “Charaktermatrix Eingabepython”

Weitere verwandte Antworten zu “Charaktermatrix Eingabepython” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen