473,666 Members | 2,392 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Splice two lists

Is there a good way to splice two lists together without resorting to a
manual loop? Say I had 2 lists:

l1 = [a,b,c]
l2 = [1,2,3]

And I want a list:

[a,1,b,2,c,3] as the result.

I've been searching around but I can't seem to find a good example.

Thanks,

Dan McLeran

May 7 '06 #1
6 4736
da********@yaho o.com <da********@yah oo.com> wrote:
Is there a good way to splice two lists together without resorting to a
manual loop? Say I had 2 lists:

l1 = [a,b,c]
l2 = [1,2,3]

And I want a list:

[a,1,b,2,c,3] as the result.

I've been searching around but I can't seem to find a good example.


One way:

result = 6*[None]
result[0::2] = l1
result[1::2] = l2
Alex
May 7 '06 #2
da********@yaho o.com wrote:
Is there a good way to splice two lists together without resorting to a
manual loop? Say I had 2 lists:

l1 = [a,b,c]
l2 = [1,2,3]

And I want a list:

[a,1,b,2,c,3] as the result.


Our good friend itertools can help us out here:
from itertools import chain, izip
x = ['a', 'b', 'c']
y = [1, 2, 3]
list(chain(*izi p(x, y))) ['a', 1, 'b', 2, 'c', 3] # You can splice more than two iterables at once too:
z = ['x', 'y', 'z']
list(chain(*izi p(x, y, z))) ['a', 1, 'x', 'b', 2, 'y', 'c', 3, 'z'] # Cleaner to define it as a function:
def splice(*its): return list(chain(*izi p(*its))) splice(x, y) ['a', 1, 'b', 2, 'c', 3] splice(x, y, z)

['a', 1, 'x', 'b', 2, 'y', 'c', 3, 'z']

--Ben

May 7 '06 #3
In article <11************ *********@u72g2 000cwu.googlegr oups.com>,
"da********@yah oo.com" <da********@yah oo.com> wrote:
Is there a good way to splice two lists together without resorting to a
manual loop? Say I had 2 lists:

l1 = [a,b,c]
l2 = [1,2,3]

And I want a list:

[a,1,b,2,c,3] as the result.

I've been searching around but I can't seem to find a good example.


Here's one possibility:

list(reduce(lam bda s, t: s + t, zip(L1, L2), ()))

-M

--
Michael J. Fromberger | Lecturer, Dept. of Computer Science
http://www.dartmouth.edu/~sting/ | Dartmouth College, Hanover, NH, USA
May 7 '06 #4
Thanks, this worked great. Can you explain the syntax of the '*' on the
return value of izip? I've only ever seen this syntax with respect to
variable number of args.

Thanks again.

May 7 '06 #5
da********@yaho o.com wrote:
Thanks, this worked great.
Welcome. :-)
Can you explain the syntax of the '*' on the
return value of izip? I've only ever seen this syntax with respect to
variable number of args.


When used in a function call (as opposed to a function definition), *
is the "unpacking" operator. Basically, it "flattens" an iterable into
arguments. The docs mention it...

http://www.python.org/doc/2.4.2/tut/...00000000000000
http://www.python.org/doc/faq/progra...ion-to-another

....but not in great detail. You can apply * to an arbitrary
expression, e.g.:
def f3(a, b, c): pass f3(1, 2, 3)
f3(*range(3))
f3(*[1, 2, 3])


--Ben

May 7 '06 #6
>When used in a function call (as opposed to a function definition), *
is the "unpacking" operator. Basically, it "flattens" an iterable into
arguments. The docs mention it...


Cool, looks like I didn't read carefully enough.

Thanks again.

May 7 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
3333
by: Gary N. | last post by:
Hi - I'm not sure if I've found a bug with the "splice" function or if I just need better documentation. Splice doesn't work quite how O'Reilly describes it (Javascript, 4th edition, Jan 2002, section 9.2.6, pg 144). I'm using IE6. var a = new Array( 1,2,3,4,5 ); document.write( a.splice( 0 ) ); // returns "", should return "1,2,3,4,5"
2
5212
by: BrianP | last post by:
Hi, I have had to invent a work-around to get past what looks like a JavaScript bug, the malfunctioning Perl-like JavaScript array functions including SPLICE() and UNSHIFT(). I have boiled it down to a very simple test case which can be cut-n-pasted into a .html file and viewed in a browser: ============================================================================
2
2542
by: Mark P | last post by:
What should be the output of the following program? The SGI STL docs say that all iterators remain valid during a splice operation. The dinkumware library reference says that iterators to spliced elts. may be invalidated. I have one system (Linux gcc) which outputs: 0 3 and another (HP aCC) which outputs:
19
5410
by: Juha Nieminen | last post by:
If I'm not completely mistaken, the only reason why std::list::size() may be (and usually is) a linear-time operation is because they want std::list::splice() to be a constant-time operation, and if you execute the latter, the size of the resulting lists cannot be known without explicitly counting the sizes of the new lists. I was thinking: What if size() was an O(n) operation only *after* a splice() operation has been performed (and...
3
3485
by: DeanJo | last post by:
So currently i have an application i developed some time ago that has 2 arrays... FirstName LastName this application randomly goes through the arrays displaying the names as it goes and finally stops on one (its a prize drawing application we use to distribute prizes at company parties) when a name gets drawn it clears that array value... if the random loop lands on any empty spot it starts over... the problem with this is, after many...
2
2953
by: Ben Pfaff | last post by:
The C++ standard says in 23.2.2.4 "list operations" that the various forms of splice invalidate iterators and references to the spliced elements. This makes the splice operation a lot less useful than it otherwise could be. It seems unnecessary to invalidate these iterators and references, and I am puzzled why the standard says that it happens. Furthermore, the "merge" operation that also moves elements from one list to another does...
1
2978
by: agendum97 | last post by:
MSDN says splice has the following arguments: arrayObj.splice(start, deleteCount, ]]]) Thus I can insert items into an array using splice. But how do I insert an entire array? For example: var arr1 = ; arr1 = "a"; arr2 = "d";
18
1826
by: dhtml | last post by:
Array.splice({}) What should it do? I think it should return a new Array with length 0. Array.splice(arr, start, deleteCount ]]) http://bclary.com/2004/11/07/#a-15.4.4.12 Example:
1
2021
by: magarwal | last post by:
Hi all, I am a newbie and trying to use splice function to read data from text file. It seems the data doesn't have line breaks but only separated by spaces. All I know is that each row has specific byte size. I am wondering if there is any way to splice data if I know byte size of each row. I have tried by array indexing but that doesn't work very well (basically, it doesn't splice data uniformly). -Manish Below is the code and...
0
8352
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8863
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8549
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8636
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7378
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5661
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4358
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2765
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1763
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.