Python程序中的Lambda表达式可重新排列正数和负数

在本教程中,我们将使用lambda编写一个匿名函数来重新排列列表中的正数和负数。我们需要从列表中选择负数,然后选择正数,以创建一个新的数。

算法

让我们看看如何逐步解决问题。

1. Initialize a list with negative and positive numbers.
2. Write a lambda expression the takes a list as an argument.
   2.1. Iterate over the list and get negative numbers
   2.2. Same for positive numbers
   2.3. Combine both using concatination operator.
3. Return the resultant list.

注意-使用列表推导来获取负数和正数。

示例

如果遇到任何问题,请参见下面的代码。

# initializing a list
arr = [3, 4, -2, -10, 23, 20, -44, 1, -23]
# lambda expression
rearrange_numbers = lambda arr: [x for x in arr if x < 0] + [x for x in arr if x >= 0]
# rearranging the arr
new_arr = rearrange_numbers(arr)
# printing the resultant array
print(new_arr)

输出结果

如果执行上述程序,则将获得以下输出。

[-2, -10, -44, -23, 3, 4, 23, 20, 1]

结论

Lambda函数非常适合需要在程序中多次执行的小操作。