Advertisement
Guest User

Untitled

a guest
Jan 21st, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. import networkx as nx
  2. import matplotlib.pyplot as plt
  3.  
  4. G = nx.dodecahedral_graph()
  5. nx.draw(G)
  6. nx.draw(G, pos=nx.spring_layout(G))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement