提问人:Arman Malkhasyan 提问时间:5/13/2022 更新时间:5/13/2022 访问量:66
Python 中 “”“input().split() in loop”“” 的问题
problems with """input().split() in loop""" in python
问:
n, m, k, r = tuple([int(i) for i in input().split()])
roads = []
for road in range(m):
t = tuple(list(map(int, input().split())))
roads.append(t)
print(roads)
我的输入是这样的:
6 6 2 6
0 1
1 2
2 3
3 4
4 1
3 5
我预计输出将是:[(0, 1), (1, 2), (2, 3), (3, 4), (4, 1), (3, 5)]
但输出是这样的:[(), (0, 1), (), (1, 2), (), (2, 3)]
为什么?
答: 暂无答案
下一个:CPP项目背景等待工作
评论
tuple
tuple(int(i) for i in input.split())
t = tuple(map(int, input().split()))