我正在尝试编写一个可以从列表中获取值的函数,然后查看它是否在子列表中的两个值范围内。希望我的代码能够更好地解释:
list1 = [1, 2, 3, 4, 5]
list2 = [[1, 3], [2, 4]]
answer = []
c = 0
for elem in list1:
if list2[c] <= int(elem) <= list2[c+1]:
answer.append(elem)
sys.stdout.write(str(answer) + ' ')
c += 1
Expected Output:
1 2 3
2 3 4
因此,我要做的是查看List1中元素的值是否在List2中的每个子列表范围内,当然,这些值已添加到列表中,然后打印出来。我收到错误消息:
Traceback (most recent call last):
File "Task11.py", line 54, in <module>
main()
File "Task11.py", line 51, in main
input_string()
File "Task11.py", line 48, in input_string
list_interval(input_list, query_values)
File "Task11.py", line 16, in list_interval
if int(list2[c]) <= int(elem) <= int(list2[c+1]):
TypeError: int() argument must be a string, a bytes-like object or a number, not 'list'
我不知道,但是我不确定如何以我提到的方式实际使用订书片。
使用列表经理,在 list2
中指定的范围参数中找到list1
的所有元素:
list1 = [1, 2, 3, 4, 5]
list2 = [[1, 3], [2, 4]]
lst = [[c for c in list1 if c in range(x, y+1)] for x, y in list2]
print(lst)
# [[1, 2, 3], [2, 3, 4]]
range()
有助于创建一个数字范围,从第一个参数(不包括最后一个参数)开始。它也采用一个可选的步骤参数,您可以在其中指定结果输出中相邻数字之间的差异。如果空表示步骤为1。