Ads block

Banner 728x90px

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 »

Dictionary in Python


Dictionary           Dictionary in Python is an unordered collection of data values, used to store data values like a dictionary which unlike other data type…
Read more »

Python Quiz 4


Q:1. How do you declare a dictionary in Python> Answer : 2. dict={" key ":" value "} Q:2. What will be the output of the following …
Read more »

Python Quiz 3


Q:1 . If  :-           A=set(' python ')          B=set(' programming ')          Then what will be the output of          print(A-B)? Answer…
Read more »