Posts in "Python Tutorial"

Python loops

Python Loop allows to loop through the program code and repeat blocks of code until a given condition is fulfilled or not fulfilled. The code which is repeated is called the loop’s body. Python has two types of loops: the for loop and the while loop.

Python 3 set

In Previous article we talked about Python List. But what is Python 3 Set? A set is an unordered collection of unique items. Unordered means that this type of collection does not allow indexing and you cannot access their elements through an index like in the case of a list or a tuple.

Python list

We already know that a python list can be written as comma-separated values between square brackets and the elements don’t have to be from the same type. Naturally this latter can cause some confusion and errors if you tend to forget about this feature.