Ask Your Question
0

converting a set into a list?

asked 11 years ago

REKHA BISWAL gravatar image

how to convert a set into a list in sage?

Preview: (hide)

Comments

I would have thought the current answer works, so please edit your post to a very explicit example. By the nature of sets, their is only one of each element! Or do you mean multisets, or just want partitions? Thanks!

kcrisman gravatar imagekcrisman ( 11 years ago )

1 Answer

Sort by » oldest newest most voted
3

answered 11 years ago

ndomes gravatar image
S = set([1,1,2,2,2,3,4,5])
L = list(S)
print L;
type(S); type(L)
Preview: (hide)
link

Comments

@ndomes But it keeps only one 1 in the list.But i want to write set([1,1,2,2,2,3,4,5]) in partition form.That means i want output to be the list [5,4,3,2,2,2,1,1].Could you please tell me how to do it?

REKHA BISWAL gravatar imageREKHA BISWAL ( 11 years ago )
1

by definition, a set has no duplicate entries.

Volker Braun gravatar imageVolker Braun ( 11 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

Stats

Asked: 11 years ago

Seen: 1,964 times

Last updated: Feb 02 '14