JBT

JBT

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…

Python 3 conditional statements

Decision making with conditionals After this vast amount of introductory articles with the basic types of variables in Python 3, it is time to go on and introduce conditional operators which help us create an application flow based on different…

Python dictionary

In the Previous article, we talked about Python List. Here I will tell you more about the Python dictionary. Dictionaries are the key-value stores in Python. They enable a fast access to elements because of the hash-table like implementation and…

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…

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…

Introduction to Python 3

In this article I will give you an introduction to Python 3. This will be the first article of a series about Python with the intention to give you a tutorial where you can start learning Python and have hands-on…

Java String Split

In java you might face a situation where you need to split String, based on some criteria. To fulfill this requirement Java has already provided two in-built methods to achieve this.