Ask Your Question
1

unpacking list in a list

asked 7 years ago

anonymous user

Anonymous

Hi, I'm trying to convert a sympy code to sage.

I have found that the following does not work:

sector1 = [1,2,3]
sector2 = [4,5,6]
newlist = [*sector1, sector2]

even though the unpacking works for functions (ex F(*sector1)).

How do I do that?

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
2

answered 7 years ago

Iguananaut gravatar image

For what it's worth, more "generalized" star unpacking is supported in more recent versions of Python 3 (I think 3.5+, maybe 3.6+):

>>> a = [1, 2, 3]
>>> b = [4, 5, 6]
>>> [*a, b]
[1, 2, 3, [4, 5, 6]]

This is just a general Python question though. Sage doesn't use Python 3 by default yet, though the next version will have significant progress toward Python 3 support.

Preview: (hide)
link
1

answered 7 years ago

vdelecroix gravatar image

You should learn about Python lists

sage: sector1 + sector2
[1, 2, 3, 4, 5, 6]
Preview: (hide)
link

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: 7 years ago

Seen: 440 times

Last updated: Jan 22 '18