All published worksheets from http://sagenb.org
G = Graph({"a":["b","e"],"b":["a","c","e"],"c":["b","d"],"d":["c","e"],"e":["a","b","d"]})
G
G.vertices()
G.edges(labels=false)
G.neighbors("a")