Searching for: Function Assignment in Python
Methods
Language: Python

Methods are functions declared within a class. There are three types: instance, class, and static. Instance methods have different implementation across all instances. They are called in relation to the current instance. Class methods have the same implementation across all instances. They are called in relation to the instance passed in. Static methods have the same implementation across all instances. They are not tied to a class instance.

Lambda
Language: Python

A lambda is a function that is declared and executed at the same time. It is an anonymous function.

Variable Declaration
Language: Python

Used to declare a variable which holds a value.