gpt4 book ai didi

python - 如何输入元组列表

转载 作者:行者123 更新时间:2023-11-28 21:57:39 25 4
gpt4 key购买 nike

我正在编写一个与图形相关的 python 程序。
我的主要是这样的

if __name__=='__main__': 
cns = [(0,1), (0,2),(1,2), (1,3),(3,1)]
G=make_graph(cns)
r=DFS(G)

我想更改程序以便用户可以输入数据。

cns = [(0,1), (0,2),(1,2), (1,3),(3,1)]

这个列表是从用户那里读取的。如何输入元组列表,怎么做?

我可以为此目的使用 raw_input 吗?

最佳答案

from ast import literal_eval

cns = literal_eval(raw_input("Please enter the data: "))

关于python - 如何输入元组列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19572250/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com