by Shahinur | Jul 13, 2019 | Python
Lists are a widely used data type in Python. In most programming languages, they are known as arrays. They follow a specific order and can be modified. In Python, list values are separated by commas and enclosed in square brackets. # This program is an example of list...
by Shahinur | Jul 12, 2019 | Python
Strings have already been discussed in the Data Types section; But the prevalence of strings is so high that it is necessary to make a separate post. So here we will discuss Python strings and its built-in functions in detail. In last blog post we showed just...
by Shahinur | Jul 7, 2019 | Python
In previous post we have seen about variables and operators in Python. If you notice, you may notice that the variables are different here, even though we have been dealing with numeric values so far. But in order to work normally, we have to work with different types...
by Shahinur | Jun 29, 2019 | Python
In the previous post, we learned about variables in Python. An operator is something that operates on a variable or a constant, i.e., performs an operation. We have been familiar with operators for a long time. For example, let’s consider a mathematical...
by Shahinur | Jun 27, 2019 | Python
Like other programming languages, the concept of variables in Python is the same. A variable is a holder or container. Let’s consider an example from our everyday life. We drink water every day; how do we do it? Initially, we pour water from a large container...
by Shahinur | Jun 21, 2019 | Python
Comments and documentation help make any program comprehensible to everyone. Suppose we write a huge program or develop a software. If someone looks at that code, it’s natural for them not to understand it. Therefore, the best practice is to use enough comments...
Recent Comments