我想要的是num
循環x + 1
中的列表,直到y
生成(並且循環停止),這是一個很大的數字。python循環x + 1次列表中的列表,直到編號y
def loop_num(y):
num = []
num.append([1])
num.append([2,3])
num.append([4,5,6])
num.append([7,8,9,10])
... #stop append when y in the appended list
#if y = 9, then `append [7,8]` and `return num`
return num
# something like[[1 item], [2items], [3items], ...]
# the number append to the list can be a random number or ascending integers.
抱歉沒有明確
什麼是x和y值?你能更清楚一點嗎? –
x是如何將整數循環並追加到列表 – Montague27
>它追加項[[1次],[2次],[3次],... [x + 1次]] y是停止的整數環路 – Montague27