Python Language

The Necessity of Data Visualization

Wed Jan 12 2022  |  Anonymous

Before we get to learn about the various nuances involved in data visualization, it is essential to appreciate why it is so important to ‘look’ at the data from the perspective of plots and graphs. To begin with, it is difficult for the human eye to decipher patterns from raw numbers only. Sometimes, even the […]

Let’s get the basics of Python done !!

Wed Dec 29 2021  |  Anonymous

In our previous blog we saw basics ad some theoretical knowledge of Python. In this blog let’s get some more basics clear. Python Keywords Keywords are the reserved words in python. We can’t use a keyword as a variable name, function name or any other identifier. Keywords are case sensitive. # Get all keywords of […]

Everything about print() in python

Wed Jun 16 2021  |  Anonymous

print() function: Python print() function is used to print something on the screen. For printing we need to use print() function. Strings are the collection of character inside “double quotes” or ‘single quotes’. If we observe then print is not a statement it is a function. It is an in-built python function. sep: It is […]