Python Lambda Function With Examples | How To Create A New Anonymous function

Python Lambda function is also called Python anonymous function. Python lambda function is created using the ‘lambda’ keyword. Since the User-defined function is defined using ‘def’ keyword whereas lambda function is defined with ‘lambda’ keyword. Lambda function can take multiple arguments and return one expression as result. Python lambda function can be used inside another function. …

Python Lambda Function With Examples | How To Create A New Anonymous function Read More »

Python Useful Built-in Functions With Examples | How to create a new function

Types of function in Python There are 3 types of functions in Python: Built-in functions User-Defined Functions (UDFs) Anonymous functions 1. Built-in functions Built-in functions can be defined as the functions whose functionality is pre-defined in Python. All build-in functions and exceptions can be found in ‘builtins‘ module. Question: What is a built-in function in …

Python Useful Built-in Functions With Examples | How to create a new function Read More »

Snowflake Architecture Deep Dive

SNOWFLAKE ARCHITECTURE Snowflake’s is based on the hybrid architecture of below two traditional architecture 1. shared-disk architectures 2. shared-nothing database architectures Snowflake is a cloud-based data-warehouse, which is available on all major cloud service provider like AWS, Azure and on Google Cloud. For snowflake fundamental please click on the link to go to our earlier …

Snowflake Architecture Deep Dive Read More »