使用 2D 列表和 while 循环创建乘法表

我必须使用三个 while 循环来创建乘法表的二维列表。该说明不允许我创建另一个列表。


我能够在列表中创建两个嵌套列表。我主要关心的是如何将两个嵌套列表相乘并收集结果。我希望在这里得到一些建议。


MT = [[],[]]

num1 = 0

num2 = 0


while num1 < 10:

    num1 = num1 + 1

    MT[0].append(num1)

    while num2 < 10:

        num2 = num2 + 1

        MT[1].append(num2)


print(MT)

我希望得到这样的结果:

http://img4.mukewang.com/6177c42e00011a6205750235.jpg

catspeake
浏览 246回答 2
2回答

开心每一天1111

如果你需要用while循环(如你所说)而不是for循环来填充乘法表,你可以这样做:MT = [[] for i in range(11)]MT[0].append('X')num1 = 0num2 = 0# fill the multiplication tablewhile num1 < 10:&nbsp; num1 = num1 + 1&nbsp; MT[0].append(num1)&nbsp; MT[num1].append(num1)&nbsp; while num2 < 10:&nbsp; &nbsp; num2 = num2 + 1&nbsp; &nbsp; MT[num1].append(num1*num2)&nbsp; num2 = 0# print the multiplication tablefor row in MT:&nbsp; for e in row:&nbsp; &nbsp; print(e, end="\t")&nbsp; print()

慕的地10843

这是你必须做的:M = [['X', 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]]for i in range(1, 11):&nbsp; row = [i]&nbsp; for j in range(1, 11):&nbsp; &nbsp; row.append(i*j)&nbsp; M.append(row)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python