G = nx.DiGraph() G.add_nodes_from([0,1]) pos = nx.circular_layout(G) nx.draw_networkx_nodes(G, pos, node_color = 'r', node_size = 100, ...
確定! 回上一頁