Ads block

Banner 728x90px

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 »

Sequence Type in Python


Sequence Type in Python
In Python sequence is the ordered collection of similer or different data types.Sequences allows to store multiple values in an organized and efficient way. Th…
Read more »

Data Types in Python


What is data type?         Data types are the classification or categorization of data items. It represents the kind of value that tells what operations can …
Read more »

python QUIZ-1 Questions and Answers


Q:1. What is the first step in write a program?   Answer :  Write Code     Q:2.Logical solution is a _______ and clear ________ procedure to solve the probl…
Read more »

Python development life cycle


Python development life cycle
There are some steps to describe the life cycle of python programming development:- Write your program or edit (modify or change if required) your program. R…
Read more »

Identifier and keywords in python


An Identifier      An identifier is a name given to program elements such as variable,classes and functions etc.     An identifier is a sequence of letters, di…
Read more »

Variable in python


Variable A variable is a named location used to store data   in the memory. it is helpful to think of variables as a container that holds data which can be ch…
Read more »

What is Python Programming?


What is Python? Python is a general purpose and high level language. Python is a popular programming language it was created by " Guido Van Rossum "…
Read more »