def draw_circular_graph(graph): graph = nx.cycle_graph(graph.number_of_nodes(), graph) nx.draw_circular(graph) plt.axis('off') plt.show().
確定! 回上一頁