Python 中的映射函数和 Lambda 表达式来替换字符
我们想用字符 a1 替换字符 a2,用 a2 替换 a1。例如,
对于输入字符串,
"puporials toinp"
以及字符 p 和 t,我们将结束字符串希望如下所示 −
"tutorials point"
为此,我们可以使用映射函数和 lambda 表达式来进行替换。 map(lambda, input) 函数遍历传递给它的每个项(以可迭代输入的形式),并对其应用 lambda 表达式。因此,我们可以按如下方式使用它 −
示例
def replaceUsingMapAndLambda(sent, a1, a2): # We create a lambda that only works if we input a1 or a2 and swaps them. newSent = map(lambda x: x if(x != a1 and x != a2) else a1 if x == a2 else a2, sent) return ''.join(newSent) print(replaceUsingMapAndLambda("puporials toinp", "p", "t"))
输出
这将提供以下输出 −
tutorials point
广告