【问题标题】:how to input list dynamic in python如何在python中输入动态列表
【发布时间】:2021-08-18 17:33:23
【问题描述】:
1 ) input: 3 , return [1, 2, 3]
then continue 
2) input: 2, return [2, 4, 3]
then continue 
3) input: 6, return [3, 6, 6, 4, 5, 6]
then continue 
4) input: 1, return [4, 6, 6, 4, 5, 6]
then continue 
5) input: 1, return [5, 6, 6, 4, 5, 6]

我的代码:

1)

list_num = [ int(i) for i in input('enter numbers divided by space ').split()]

print(list_num)
lst = []

# number of elemetns as input
n = int(input("Enter number of elements : "))
 
# iterating till the range
for i in range(0, n):
    ele = int(input())
 
    lst.append(ele) # adding the element
     
print(lst)

test_list1 = []
n2 = int(input("Enter number of elements2 : "))

for i2 in range(0, n2):
    ele2 = int(input())
 
    test_list1.append(ele2) # adding the element

print(test_list1)

res_list = [lst[i] + test_list1[i2] for i in range(len(lst))]

print(res_list)

但不是动态的

【问题讨论】:

  • 请解释逻辑并添加更多细节。

标签: python list loops tuples infinite


【解决方案1】:

您的代码 2 似乎在进行成对列表添加。
但是您的res_list 的计算是使用i2 索引,它应该只是i

如果没有修复:[4, 5] 加上 [0, 1] 给出 [5, 6]
修复后:[4, 5] 加上[0, 1] 给出[4, 6]

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2018-09-27
    • 2011-05-12
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-12-02
    相关资源
    最近更新 更多