Ads block

Banner 728x90px

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 »

Set in Python


Set         In Python set is an unordered collection of data type that is iterable, mutable and has no duplicate elements. The order of a element in a set is…
Read more »

Tuples in Python


Tuple               Tuple is an ordered collection of Python objects much like a list. The sequence of values stored in a tuple can be of any type and they a…
Read more »

List in Python


List :       List are just like the arrays, declared in other languages. List not need be homogeneous always make it the most powerful tool in Python. A singl…
Read more »

Python QUIZ 2


Q:1. If list=['red','blue','green','yellow'] , What will be the output of :                list.pop('blue')           …
Read more »