Initialize a Huge Python Dict of Size N (Easy & Quick)

βš”οΈ Programming Challenge: Given an integer n that could be very high (e.g., n=1000000). How to initialize a Python dictionary of size n that is fast, easy, and efficient? Next, you’ll learn the five main ways to solve this and compare their performance at the end of this article. Interestingly, the winner Method 4 is … Read more

3 Best Ways to Generate a Random Number with a Fixed Amount of Digits in Python

Coding Challenge βš”οΈ Challenge: Given an integer d representing the number of digits. How to create a random number with d digits in Python? Here are three examples: my_random(2) generates 12 my_random(3) generates 389 my_random(10) generates 8943496710 I’ll discuss three interesting methods to accomplish this easily in Python—my personal favorite is Method 2! Shortest Solution … Read more

How to Randomly Sample from a Python List?

In data science, you will need to learn how to generate random numbers, which in Python, we can do with the random module. In this tutorial, you’ll learn how to solve the following programming challenge: βš”οΈ Challenge: How to do random sampling from a list in Python? Without further ado, let’s dive right into it! … Read more

How to Change Tuple Values in Python?

Problem Formulation and Solution Overview This article will show you how to change tuple values in Python. To make it more interesting, we have the following running scenario: Eddie, the Meteorologist at NTCV, has calculated an incorrect five (5) Day weather forecast. These values are saved as a Tuple and require updating. πŸ’¬ Question: How … Read more

Python Find Shortest List in Dict of Lists

Problem Formulation πŸ’¬ Programming Challenge: Given a dictionary where the values are lists of varying sizes. Find and return the shortest list! Here’s an example: Also, you’ll learn how to solve a variant of this challenge. πŸ’¬ Bonus challenge: Find only the key that is associated with the shortest list in the dictionary. Here’s an … Read more

Python Time Series Forecast – A Guided Example on Bitcoin Price Data

A Time Series is essentially a tabular data with the special feature of having a time index. The common forecast task is ‘knowing the past (and sometimes the present), predict the future’. This task, taken as a principle, reveals itself in several ways: in how to interpret your problem, in feature engineering, and in which … Read more

Python Find Longest List in Dict of Lists

Problem Formulation πŸ’¬ Programming Challenge: Given a dictionary where the values are lists of varying sizes. Find and return the longest list! Here’s an example: Also, you’ll learn how to solve a variant of this challenge. πŸ’¬ Bonus challenge: Find only the key that is associated with the longest list in the dictionary. Here’s an … Read more