python import networkx as nx import matplotlib.pyplot as plt G = nx.Graph() G.add_node(1) G.add_node(2) G.add_node(3) G.add_edge(1, 2) G.add_edge(2, 3) G.add_edge(3, 1) nx.draw(G, with_labels=True) plt.show()


上一篇:
下一篇:
切换中文