Ads block

Banner 728x90px

Conditional Statements


Conditional Statements
Conditional Statements         Conditional statements help in making a decision based on certain conditions. These conditions are specified by a set of cond…
Read more »

Introduction to Python


Python Introduction Python is a general purpose and high level programming language. Python is a popular programming language. It was created by "Guido …
Read more »

Type Conversion in Python


Type Conversion           The process of converting the value of one data type into another data type is called type conversion.            There are mainly …
Read more »

Expression and Statement


Expression         An expression is a combination of symbols that evaluates to a value. An expression is a combination of variables , operators , values,  su…
Read more »

Operator Precedence in Python


Operator Precedence in Python
Precedence       When an expression has two or more operators, we need to identify the correct sequence to evaluate these operators. This is because result o…
Read more »

Operators in python


Operators in python
Operator       Operators are used to perform operations on variable and values. Operators are the constructs which can manipulate the value of operands. Exampl…
Read more »

Boolean in Python


Boolean           Data type with one of the two built-in values, "True"  or "False" . Boolean objects that are equal to True are truthy …
Read more »