Heim > Artikel > Backend-Entwicklung > Was ist die Lambda-Funktion in Python und warum brauchen wir sie?
In diesem Artikel erfahren wir mehr über die Lambda-Funktion in Python und warum wir sie brauchen, und sehen uns einige praktische Beispiele für die Lambda-Funktion an.
Lambda-Funktionen, oft „anonyme Funktionen“ genannt, sind die gleichen wie gewöhnliche Python-Funktionen, mit der Ausnahme, dass sie ohne Namen definiert werden können. Das Schlüsselwort >def wird zum Definieren gewöhnlicher Funktionen verwendet, während das Schlüsselwort lambda zum Definieren anonymer Funktionen verwendet wird. Sie sind jedoch auf einzeilige Ausdrücke beschränkt. Sie können wie reguläre Funktionen mehrere Argumente akzeptieren.
Grammatiklambda arguments: expression
def geschrieben wurde. Dies ist jedoch nicht ganz richtig, da mit def definierte Funktionen in einer Zeile definiert werden können. Allerdings werden def -Funktionen normalerweise in mehr als einer Zeile definiert.
# input string inputString = 'TUTORIALSpoint' # converting the given input string to lowercase and reversing it # with the lambda function reverse_lower = lambda inputString: inputString.lower()[::-1] print(reverse_lower(inputString))
tniopslairotutVerwenden Sie Lambda-Funktionen in bedingten Prüfungen
# Formatting number to 2 decimal places using lambda function formatNum = lambda n: f"{n:e}" if isinstance(n, int) else f"{n:,.2f}" print("Int formatting:", formatNum(1000)) print("float formatting:", formatNum(5555.4895412))
Int formatting: 1.000000e+03 float formatting: 5,555.49Was ist der Unterschied zwischen der Lambda-Funktion und der definierten Funktion?
# creating a function that returns the square root of # the number passed to it def square(x): return x*x # using lambda function that returns the square root of # the number passed lambda_square = lambda x: x*x # printing the square root of the number by passing the # random number to the above-defined square function with the def keyword print("Square of the number using the function with 'def' keyword:", square(4)) # printing the square root of the number by passing the # random number to the above lambda_square function with lambda keyword print("Square of the number using the function with 'lambda' keyword:", lambda_square(4))
Square of the number using the function with 'def' keyword: 16 Square of the number using the function with 'lambda' keyword: 16Wie im vorherigen Beispiel gezeigt, funktionieren die Funktionen
square() und lambda_square() gleich und wie erwartet. Schauen wir uns dieses Beispiel genauer an und finden den Unterschied zwischen ihnen heraus -
Keine Lambda-Funktion | |
---|---|
Erlaubt eine beliebige Anzahl von Zeilen innerhalb eines Funktionsblocks. | |
Dies ist in Situationen nützlich, in denen mehrere Codezeilen erforderlich sind. | |
Wir können die Lesbarkeit verbessern, indem wir Kommentare und Funktionserklärungen verwenden. |
is_odd_list = [lambda arg=y: arg * 5 for y in range(1, 10)] # looping on each lambda function and calling the function # for getting the multiplied value for i in is_odd_list: print(i())Ausgabe
5 10 15 20 25 30 35 40 45Bei jeder Iteration des Listenverständnisses wird eine neue Lambda-Funktion mit einem Standardparameter y erstellt (wobei
y das aktuelle Element in der Iteration ist). Später, in der for-Schleife, verwenden wir i(), um dasselbe Funktionsobjekt mit Standardparametern aufzurufen und den erforderlichen Wert zu erhalten. Daher enthält is_odd_list eine Liste von Lambda-Funktionsobjekten.
Beispiel
# using lambda function to find the maximum number among both the numbers find_maximum = lambda x, y : x if(x > y) else y print(find_maximum(6, 3))Ausgabe
6Beispiel
inputList = [[5,2,8],[2, 9, 12],[10, 4, 2, 7]] # sorting the given each sublist using lambda function sorted_list = lambda k: (sorted(e) for e in k) # getting the second-largest element second_largest = lambda k, p : [x[len(x)-2] for x in p(k)] output = second_largest(inputList, sorted_list) # printing the second largest element print(output)Ausgabe
[5, 9, 7]Python-Lambda-Funktion mit filter()
inputList = [3, 5, 10, 7, 24, 6, 1, 12, 8, 4] # getting the even numbers from the input list # using lambda and filter functions evenList = list(filter(lambda n: (n % 2 == 0), inputList)) # priting the even numbers from the input list print("Even numbers from the input list:", evenList)
Even numbers from the input list: [10, 24, 6, 12, 8, 4]Python-Lambda-Funktion mit map()
Pythons Funktion „map()“ akzeptiert eine Funktion und eine Liste als Parameter. Wenn Sie die Funktion mit einer Lambda-Funktion und einer Liste aufrufen, wird eine neue Liste mit allen Lambda-geänderten Elementen zurückgegeben, die die Funktion für jedes Element zurückgibt.
Beispiel
# input list inputList = ['HELLO', 'TUTORIALSpoint', 'PyTHoN', 'codeS'] # converting all the input list elements to lowercase using lower() # with the lambda() and map() functions and returning the result list lowercaseList = list(map(lambda animal: animal.lower(), inputList)) # printing the resultant list print("Converting all the input list elements to lowercase:\n", lowercaseList)Ausgabe
Converting all the input list elements to lowercase: ['hello', 'tutorialspoint', 'python', 'codes']Fazit
Das obige ist der detaillierte Inhalt vonWas ist die Lambda-Funktion in Python und warum brauchen wir sie?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!