Mike Driscoll: PyDev of the Week: Lais Carvalho This week we welcome Lais Carvalho (@lais_bsc) as our PyDev of the Week! Lais is…
TestDriven.io: Introduction to Django Channels This tutorial shows how to use Django Channels to create a real-time application.
David Amos: 5 Ways To Use Python On An iPad When Apple released the M1 iPad Pros in March of 2021, I traded in my…
Sumana Harihareswara – Cogito, Ergo Sumana: Some Novel Python Packaging/Distribution/Inspection/Installation Projects Some Novel Python Packaging/Distribution/Inspection/Installation Projects
Codementor: One-Hot Encoding in Data Science What is One-Hot Encoding in Data Science? and How to implement it in Python using…
Inspired Python: Solving Wordle Puzzles with Basic Python Solving Wordle Puzzles with Basic Python Have you heard of Wordle? It’s a deceptively simple…
ItsMyCode: How to Fix in Python ValueError: Trailing data? ItsMyCode | In Python ValueError: Trailing data occurs when you try to load the JSON…
Zato Blog: API development workflow with Zato Zato is an integration platform and backend application server which means that, during most of…
ItsMyCode: How to Fix: KeyError in Pandas? ItsMyCode | The KeyError in Padas occurs when you try to access the columns in…
Armin Ronacher: Dependency Risk and Funding I have a love/hate relationship with dependencies. I wrote about this extensively on this blog.…
ItsMyCode: [Solved] NameError: name ‘pd’ is not defined ItsMyCode | In Python, NameError: name ‘pd’ is not defined occurs when you import the pandas library…
ItsMyCode: [Solved] NameError: name ‘np’ is not defined ItsMyCode | In Python, NameError: name ‘np’ is not defined occurs when you import the…
ItsMyCode: ValueError: If using all scalar values, you must pass an index ItsMyCode | If you pass all scalar values while creating pandas Dataframe in Python, you…
Sebastian Pölsterl: scikit-survival 0.17 released This release adds support for scikit-learn 1.0, which includes support for feature names. If you…
ItsMyCode: No handles with labels found to put in legend ItsMyCode | In Python matplotlib No handles with labels found to put in legend occur…
Real Python: The Real Python Podcast – Episode #92: Continuing to Unravel Python’s Syntatic Sugar With Brett Cannon A year ago, we had Brett Cannon on the show to discuss his blog series…
ItsMyCode: [Solved] Python can’t Multiply Sequence by non-int of type ‘str’ ItsMyCode | The TypeError: can’t multiply sequence by non-int of type ‘str’ occurs if we…
Juri Pakaste: Async Swift and ArgumentParser Swift 5.5 brought us async functions. ArgumentParser is the most popular way to write command…
ItsMyCode: TypeError: list indices must be integers or slices, not str ItsMyCode | If you are accessing the elements of a list in Python, you need…
Matrix Multiplication Explained (with Python examples): Complete Guide In this article we will discuss steps and intuition for matrix multiplication with examples using…