How to add labels to nodes in a CIRCULAR GRAPH with networkx in python

Solution 1:

Solved!

G=nx.Graph()
G.add_nodes_from(range(20))
e = [(0,1),(0,2)]
G.add_edges_from(e)

# some labels
labels={}

nx.draw_circular(G, node_color='y', edge_color='#909090', node_size=500,labels=labels)

plt.axis('equal')

enter image description here