Ask Your Question
0

converting a set into a list?

asked 2014-02-02 14:29:49 +0200

REKHA BISWAL gravatar image

how to convert a set into a list in sage?

edit retag flag offensive close merge delete

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 ( 2014-02-03 10:49:06 +0200 )edit

1 Answer

Sort by ยป oldest newest most voted
3

answered 2014-02-02 15:01:57 +0200

ndomes gravatar image
S = set([1,1,2,2,2,3,4,5])
L = list(S)
print L;
type(S); type(L)
edit flag offensive delete link more

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 ( 2014-02-03 00:43:47 +0200 )edit
1

by definition, a set has no duplicate entries.

Volker Braun gravatar imageVolker Braun ( 2014-02-03 16:44:42 +0200 )edit

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: 2014-02-02 14:29:49 +0200

Seen: 1,747 times

Last updated: Feb 02 '14