Skip to content
Advertisement

list of tuples to single list

I have list of tuples in the following format,

JavaScript

I need to convert them into following format,

JavaScript

I have tried the following code

JavaScript

but still producing the same result.

Advertisement

Answer

You could do it with a list comprehension:

JavaScript

Output:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement