“Erstellen Sie das Verständnis von 2D Array Python List” Code-Antworten

2D -Listenverständnis Python

[[float(c) for c in row] for row in data]
Bored Coder

Erstellen Sie das Verständnis von 2D Array Python List

#by taking the user input
def main():
    #write your code here
    row = int(input())
    col  = int(input()
    
    #using the list comprehensions
    matrix = [[int(input())for j in range(col)]for j in range(row)]
    #display the matrix
    for i in range(row):
        for j in range(col):
            print(matrix[i][j],end=" ")
        print()

if __name__ == "__main__":
    main()
Combative Cardinal

2D -Listenverständnis Python


[int(x) for line in data for x in line.split()]

Smoggy Salmon

Ähnliche Antworten wie “Erstellen Sie das Verständnis von 2D Array Python List”

Fragen ähnlich wie “Erstellen Sie das Verständnis von 2D Array Python List”

Weitere verwandte Antworten zu “Erstellen Sie das Verständnis von 2D Array Python List” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen