当前位置:网站首页>Problem solving - nested lists

Problem solving - nested lists

2022-06-24 22:38:00 Ssaty.

The first 1 Turn off : Print zero matrix

This task is to create and print a m That's ok n Zero matrix of columns .

m = int(input()) # Row number 
n = int(input()) # Number of columns 
########## Begin ##########
A = []  
for i in range(m
原网站

版权声明
本文为[Ssaty.]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/175/202206241631167216.html