Subham DasMar 22, 20191 min readPythonPython is a high level programming language which is based on Interpreter with object oriented feature. In the year 1990-91 the language...
Subham DasMar 21, 20191 min readStringIn python string is type(class) that is a sequence of character enclosed in double quotes(" "). It is immutable i.e. a string cannot be...
Subham DasMar 20, 20191 min readIterative Structure If same type task is repeated by a structure till the condition is true, then it is called repetitive structure or loop. In Python two...
Subham DasMar 20, 20191 min readList in Python List in Python is a class type and its object consists of collection of elements or items of different type in an ordered sequence. It is...