Anders and Briegel in Python
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

mix_graph_and_networkx.py 227B

il y a 8 ans
il y a 8 ans
il y a 8 ans
123456789
  1. from abp.fancy import GraphState
  2. from abp.util import xyz
  3. import networkx as nx
  4. n = 10
  5. g = GraphState(range(n))
  6. nx.set_node_attributes(g, "color", "red")
  7. g.add_edges_from([i, i+1] for i in range(n-1))
  8. print g.node[0]["color"]