How to Determine the Type of an Object in Python?

Problem Formulation Every Python object is of a certain type, also called “class”. The class is a blueprint that shows the data and capabilities of each object/instance that is created after this blueprint. Given a Python object (=instance). How to determine/check/get its type (=class)? There are many variants of this question: How to determine the … Read more

Striving for Collective Intelligence

The idea I’m going to tell you is well-researched but little-known. And it’s meta. Thinking about it has become my main passion, life mission, and purpose. It’s how I see the world. In short: what drives me isΒ increasing collective intelligence. Collective Intelligence is Everywhere You are not one individual but many individual cells that are … Read more

[Solved] NumPy RuntimeWarning: All-NaN slice encountered

Problem Formulation You use NumPy’s np.nanmedian() function in your code that is supposed to ignore NaN values when computing the mean of a NumPy array. But when using it, NumPy raises a RuntimeWarning: All-NaN slice encountered message: What is the reason for this warning and how to fix it? Solution + Explanation The reason this … Read more

[Solved] NumPy RuntimeWarning: Mean of empty slice

Problem Formulation You use NumPy’s np.nanmean() function in your code that is supposed to ignore NaN values when computing the mean of a NumPy array. But when using it, NumPy raises a RuntimeWarning: Mean of empty slice message: What is the reason for this warning and how to fix it? Solution + Explanation The reason … Read more

A Simple Introduction to Set Comprehension in Python

Being hated by newbies, experienced Python coders can’t live without this awesome Python feature. In this article, I give you everything you need to know about set comprehensions using the bracket notation {}. What is Set Comprehension? Set comprehension is a concise way of creating sets in Python using the curly braces notation {expression for … Read more

How to Get an HTML Page from a URL in Python?

This tutorial shows you how to perform simple HTTP get requests to get an HTML page from a given URL in Python! Problem Formulation Given a URL as a string. How to extract the HTML from the given URL and store the result in a Python string variable? Example: Say, you want to accomplish the … Read more