Arulius Savio

Arulius Savio

Python Docstrings – Simply Explained!

Python Docstrings

Coding is a language that is a tad bit alienated compared to all the languages that humans use to communicate with each other. Though the codes are run by machines, their development and maintenance usually fall within the hands of…

An Introduction to Python Comments

Python Comments

Looking at pages of codes can sometimes be exhaustive for an average human. After all, code is just a language used to make machines understand our requirements. Being someone who often finds out of depth when the core language skills…

A Detailed Guide on Python Identifiers

Python Identifiers

Programming like any game has its own set of rules and guidelines within which the participants should play. Anything outside shall be disqualified with an error. Thereby, it is imperative that one understands what identifiers in Python are. This article…

Python Keywords – Simply Explained!

Python Keywords

Some words in each language are taboo to be used in the mainstream. These words rarely come by unless you are amidst a hostile situation. These kinds of words in programming are called Keywords. What do they mean? The words…

How to Use Python map() Function?

Python Map

What if you do not fancy the for loop, but would like to run iterations on an input? Is there a way around doing that in Python? Seems there is! Enter the map( ) function. This function effectively loops over…

Numpy arctan2: Find element-wise arctan of x1/x2

2 Png Webp

Hello! In this tutorial, we will learn about the arctan function and the numpy arctan2 function which gives element-wise arc tangent of x1/x2 choosing the quadrants correctly. Also read: Python if…else Conditional Statement (With Examples) What is the arctan or…