Python Data Structures Articles

Sorted By: Most Recent
Anmol Tomar Anmol Tomar
Updated on March 14, 2025

Elbow Method in K-Means Clustering: Definition, Drawbacks, vs. Silhouette Score

The elbow method is a technique used to find the optimal number of clusters (K) in k-means clustering, by identifying the “elbow” point on a graph of k-values and their corresponding within-cluster sum of squares (WCSS) values.

Image: Shutterstock / Built In
Anthony Corbo Anthony Corbo
Updated on March 05, 2025

What Are Python Data Structures?

Python data structures are formats for organizing and storing different kinds of data in Python. The four main types of built-in Python data structures are lists, tuples, sets and dictionaries.

Image: Shutterstock / Built In
Dario Radečić Dario Radečić
Updated on February 18, 2025

3 Ways to Convert a NumPy Array to Pandas DataFrame

A NumPy array can be converted to a Pandas DataFrame through a variety of methods, including passing a NumPy array to pd.DataFrame and using the from_records() method. Learn more.

Image: Shutterstock / Built In
Giorgos Myrianthous Giorgos Myrianthous
Updated on January 30, 2025

How to Convert a Dictionary Into a Pandas DataFrame

Learn how to convert a Python dictionary into a Pandas DataFrame in a few different ways, depending on how the data is structured and stored in dictionary.

Image: Shutterstock / Built In
Sara A. Metwalli Sara A. Metwalli
Updated on January 30, 2025

13 Python Snippets You Need to Know

Optimize your workflow with these everyday Python snippets.

Bisola Olasehinde Bisola Olasehinde
Updated on December 18, 2024

How to Insert a Python Variable in a String

There are four common methods that will allow you to add Python variables in a string, including: the comma, the modulus operator, string format and f-strings. Here’s how they work.

Image: Shutterstock / Built In
Dario Radečić Dario Radečić
Updated on December 12, 2024

Python Set Difference: A Complete Guide

Python set difference is a function that returns the elements of the first set that aren’t found in the second set. Here’s how it works with code.

Image: Shutterstock / Built In
Richmond Alake Richmond Alake
Updated on December 05, 2024

Heap Sort, Explained

Heap sort is a sorting algorithm that organizes elements in an array into a binary heap, and then sorts that heap by moving the largest element in the array. Here’s how to implement it in Python.

Image: Shutterstock / Built In
Isabelle Maciohsek Isabelle Maciohsek
Updated on November 07, 2024

How to Check if a List Is Empty in Python

There are a variety of methods that can be used to check if a list is empty in Python, including the Truth Value Testing method, the len() function and the == operator. Learn more.

Image: Shutterstock / Built In
Kay Jan Wong Kay Jan Wong
Updated on October 24, 2024

Python Tree Implementation: A Guide

Trees are non-linear data structures that store data hierarchically and are made up of nodes connected by edges. Here’s how to implement it in Python using bigtree.

Image: Shutterstock / Built In