Python Lambda Functions

Lambda function is a function without a name. Lambda function is also known as an anonymous function. They are defined using lambda keyword. Lambda functions are used extensively along with …

Read more

Python For Loops

Python For Loops:   Used to iterate over a sequence (list, tuple, string) or other iterable objects. Iterating over a sequence is called traversal.   Table Of Contents 01. For …

Read more

Python Recursion

A function can call other functions. It is even possible for the functions to call itself. These types of construct are termed as recursive functions. Recursion Concept: Image Source: LinkedIn …

Read more

Python Operators

  Operators are special symbols in python that carry out Arithmetic or Logical computation. The value that the operator operates on is called Operands. TYPES OF OPERATORS: 01. Arithmetic Operators …

Read more

Python Identifiers

It helps us in differentiating one entity from another. The name given to entities like class, function, variables etc is known as identifiers. Below Are Some Rules For Writing Identifiers: …

Read more

Python Keywords

Keywords are the reserved words in python. Used as the variable name, function, or any other identifiers. They are case-sensitive. There are total 33 keywords. Keywords in Python False await …

Read more

Python Variables

Python Variables   Python doesn’t have a specific “keyword” for variables. No need to specify the type of data for given variable. You can change the value of that variable …

Read more

Python Comments

Non-executing statements in python programming. Comments are used to make code more readable to the user. It is also used for future reference of code. Single line Comment: We use …

Read more