How do you allocate 25 memory spaces in a list, in Python?
本问题已经有最佳答案,请猛点这里访问。
在Java中,它将是:int位_list[]=新的int位_list[25];
我可以用一个循环来完成它,然后像这样附加:
1 2 3 4 5 6 7 8 9 10 11 12 13 | Bit_list = ['x'] """ loop to make space in memory for Bit_list """ a = 0 while (a != 21): appd = 'x' Bit_list.append(appd) a += 1 |
有更好的方法吗?
这是一种方法:
1 2 | lst = 25 * [None] print(lst) |