Boolean variables can have two values, True or False. In python, boolean variables are mostly used with if statements and
Continue readingAuthor: banerjeer2611
#Day5 – The terms Hashable and Mutability
You must have come across the terms Hashable and Mutability before. They are common to most Programming Languages. In this
Continue reading#Day4 – Sets and Frozensets in Python
Sets and Frozen Sets are built-in data types in Python. Both of them are unordered datatypes used to store distinct
Continue reading#Day3 – Break, Pass, and Continue in Python
The keywords Break, Pass and Continue are used to control the flow of code inside a loop.First, we will discuss
Continue readingHow to Benchmark functions in Python
In this article, we will discuss 4 approaches to benchmark functions in Python The first 3 methods will help us measure
Continue reading#Day2 – List/Dictionary Comprehension in Python
List/Dictionary Comprehension is an elegant one-liner to iterate over a List/Dictionary. They allow us to create new objects based on
Continue reading#Day1 – Nonlocal and Global Keywords in Python
Two keywords used to change the scope of a variable. Nonlocal Consider the above case where we have an inner
Continue readingPython — Pip Commands you might not know
Pip can be used to do more than just install packages. A list of common pip commands you might find
Continue readingHow to create a GitHub Profile README using this web app
This article contains a list of resources, tutorials, and a link to a free tool to make your GitHub About
Continue readingHow to use Python to work with Amazon Dynamo DB
In this tutorial, we will be using the Boto3 module in Python to work with Amazon’s NoSQL Database, Dynamo DB.
Continue readingWorking with User-Defined Functions in SQL Server
In this tutorial, we will be discussing user-defined functions in SQL Server. More specifically, we will be discussing Scalar functions
Continue readingHow to Build a UI for Your Model in 2021 Using Streamlit
Streamlit is an open-source Python library that can build a UI for various purposes, it is not limited to data
Continue reading