Category: Python Basics

Python Basics, Tutorials

How to get Yesterday’s Date in Python

Introduction: Getting yesterday’s date is a common requirement in many Python applications. For example, you may need to generate a report that includes data from the previous day, or you may need to perform some data analysis on data collected yesterday. In such scenarios, it is essential to know how to get yesterday’s date in […]

Python Basics, Tutorials

Python Primitive Data Types: A Comprehensive Tutorial

Introduction Python is a popular programming language that is widely used in various fields including data science, web development, and artificial intelligence. In this tutorial, we will be discussing Python primitive data types. These data types are the building blocks of any programming language and they form the basis for more complex data structures. Python […]

Python Basics, Tutorials

Jupyter Notebook Output Suppression: A Tutorial

Introduction Jupyter Notebook is a popular tool used by data scientists, researchers, and developers for data analysis, visualization, and prototyping. It allows users to create and share documents that contain live code, equations, visualizations, and narrative text. One of the most important features of Jupyter Notebook is its ability to display the output of code […]

Python Basics, Tutorials

Alteryx API with Python: A Comprehensive Guide

Introduction In today’s world, data is everything. Companies and organizations are constantly collecting and analyzing data to make informed decisions. Alteryx is a powerful data analytics platform that allows its users to blend, clean, and analyze data from various sources. However, what if you want to automate certain tasks in Alteryx or integrate it with […]

Python Basics, Tutorials

Using GitLab Python API: A Tutorial for Beginners

Introduction GitLab is a web-based Git repository manager that allows developers to collaborate on code, track changes, and manage projects. The platform provides an API that enables developers to automate tasks and integrate GitLab with other tools. In this tutorial, we will be exploring how to use the GitLab Python API to perform various tasks […]

Python Basics, Tutorials

Zillow API with Python: How to Access and Use It

Introduction Zillow API is a web-based service provided by Zillow that allows developers to access real estate data such as property details, historical data, and market trends. This API provides a simplified way of accessing real estate data without the need for web scraping or manual data entry. Python is a popular programming language used […]

Python Basics, Tutorials

How to remove key from Python Dictionary

Introduction Dictionaries are an essential data structure in Python, and they allow you to store and manipulate data in a way that is intuitive and efficient. In a dictionary, you can store key-value pairs, where each key maps to a value. However, there may be instances where you need to remove a particular key from […]

Python Basics, Tutorials

Python Date Range: A Comprehensive Guide

Introduction Python provides several modules for working with dates and times, including the datetime and calendar modules. One common task when working with dates is to generate a range of dates within a specific time period. In this guide, we will explore different approaches to generate date ranges in Python. Working with dates and times […]