Join lists shuffeled

Hi,

So I have two lists and I’d like to join them shuffeled.
For example:
List 1:
a
b
c
d
List 2:
1
2
3
4

Joined list:
a1b2c3d4.

How can you do this?

Like this?

1 Like

a way with ootb

1 Like

I love how concise Python can be :smiley:

2 Likes

yeps many ways :wink:

2 Likes

Hello, thank you for sharing knowledge.

edit:
I put the concatenation in the loop but it’s this complicated life in this case.
I’m surprised there was no error message on the first iteration.

1 Like

Hi everyone

thanks for your responses, I chose @Alien 's solution because that was the closest to what I wanted to achieve.

1 Like