Edge List输入格式
test.edgesa b
b c
b d
c d
g = networkx.read_edgelist("test.edges")
print g.edges()
结果:
[('a', 'b'), ('c', 'b'), ('c', 'd'), ('b', 'd')]
test_adj.txta b
b c d
c d
邻接表形式
g = networkx.read_adjlist("test_adj.txt")
print edges()
结果:
[('a', 'b'), ('c', 'b'), ('c', 'd'), ('b', 'd')]
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。