First time here? Check out the FAQ!

Ask Your Question
0

graphs.planar_graphs

asked 6 years ago

standardtrickyness gravatar image

So I'm a bit confused by the documentation of graphs.planar_graphs I thought it would just generate a list of planar graphs so I don't know why the following code doesn't work (and also why I need to do list(l) )

l = graphs.planar_graphs(4, dual=False)
gen=list(l) #don't know why this is necessary k=len(gen) ii=1 G=gen[ii] p=G.plot() p.show()

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 6 years ago

j.c. gravatar image

To check the type of l, you can type ?l. You will see that l is a generator, not a list object. Thus in order to compute its length (and do other list-specific operations) you must convert it to a list using list.

Preview: (hide)
link

Comments

Okay thanks I'll have to read up on what a generator is, but what is wrong after I do gen=list(l) G=gen[ii] p=G.plot p.show?

standardtrickyness gravatar imagestandardtrickyness ( 6 years ago )

so what is the output of graphs.planar_graphs?

standardtrickyness gravatar imagestandardtrickyness ( 6 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 6 years ago

Seen: 408 times

Last updated: May 24 '18