Answers for "two elements at a time in list comprehension"

1

two elements at a time in list comprehension

>>> f1 = lambda x: x
>>> f2 = lambda x: 10*x

>>> [f(x) for x in range(5) for f in (f1,f2)]
[0, 0, 1, 10, 2, 20, 3, 30, 4, 40]
Posted by: Guest on September-28-2020

Code answers related to "two elements at a time in list comprehension"

Python Answers by Framework

Browse Popular Code Answers by Language