如何根据用户输入构建矩阵?

时间:2016-07-10 16:52:43

标签: python matrix input

如何解决创建带随机数字(用户输入)的矩阵的问题? 我也是如此的问题:

  

UnicodeDecodeError:'ascii'编解码器无法将字节0xc3解码到位   23:序数不在范围内(128)

array = list()
i = int(input("How many row: "))      
j = int(input("How many column: "))    


for x in range(i):                
    if i <= 0 or i>10:
        print("Failure!")  
        break
    elif j <= 0 or j>10:
        print("Failure!")
        break
    else:
        for y in range(j):        
            num = raw_input("Value: ")       
            array.append(int(num))


a = np.reshape((i,j))
print a

1 个答案:

答案 0 :(得分:0)

我将import HomeService from 'HomeService.service.js' angular.module('home', []) .service('HomeService', HomeService); 更改为np.reshape((i,j))并且工作正常。我没有看到你提到的代码中的任何错误。

a = np.reshape(array,(i,j))