Real Python: Python Community Interview With Eric Wastl
This week, we’re joined by Eric Wastl, a Senior Architect at TCGPlayer and the founder of Advent of Code (AoC). Join us as we discuss the inception of AoC, how to avoid common pitfalls when solving...
View ArticleŁukasz Langa: Weekly Report, November 15 - 21
Pretty typical week that started with a bang: an out of schedule release of Python 3.9 to fix a regression of argparse that turned out to be pretty disruptive for our users.
View ArticleTrey Hunner: Python Black Friday & Cyber Monday Sales (2021)
This is my annual compilation post of Black Friday and Cyber Monday deals I’ve found related to Python and Python learning.Note: Some sales likely aren’t announced yet, so I will update this post on...
View ArticleReal Python: Building a Neural Network & Making Predictions With Python AI
If you’re just starting out in the artificial intelligence (AI) world, then Python is a great language to learn since most of the tools are built using it. Deep learning is a technique used to make...
View ArticlePython for Beginners: Depth First Traversal in Python
Graphs are non linear data structures used to represent relationships between different objects. In this article, we will discuss depth first traversal algorithm to print the vertices in a graph. We...
View ArticleTalk Python to Me: #342: Python in Architecture (as in actual buildings)
At PyCon 2017, Jake Vanderplas gave a great keynote where he said, "Python is a mosaic." He described how Python is stronger and growing because it's being adopted and used by people with diverse...
View ArticleItsMyCode: Python Ternary Operator
ItsMyCode |In Python, Ternary operator, also called conditional expressions, are operators that evaluate something based on a binary condition. Ternary operators provide a shorthand way to write...
View ArticlePython Bytes: #260 It's brutally simple: made just from pickle and zip
<p><strong>Watch the live stream:</strong></p> <a href='https://www.youtube.com/watch?v=F7hmqiTXADQ' style='font-weight: bold;'>Watch on YouTube</a><br>...
View ArticlePyCoder’s Weekly: Issue #500 (Nov. 23, 2021)
#500 – NOVEMBER 23, 2021View in Browser »Python News: What’s New From October 2021? The Python community gave a warm welcome to Python 3.10 in October 2021. In this article, you’ll catch up on some big...
View ArticleItsMyCode: Graphviz’s executables not found
ItsMyCode |Graphviz is open source graph visualization software that helps represent structural information as diagrams of abstract graphs and networks. Sometimes, if you install this on windows with...
View ArticleItsMyCode: ImportError: No module named Pandas
ItsMyCode |In Python, if you try to import pandas without installing the module using pip, you will get ImportError: no module named pandas error. In this tutorial, let’s look at installing the pandas...
View ArticleItsMyCode: ImportError: No module named requests
ItsMyCode |In Python, if you try to import Requests without installing the module using pip, you will get ImportError: no module named requests error. In this tutorial, let’s look at installing the...
View ArticleItsMyCode: UnicodeDecodeError: ‘utf8’ codec can’t decode...
ItsMyCode |The UnicodeDecodeError occurs mainly while importing and reading the CSV or JSON files in your Python code. If the provided file has some special characters, Python will throw an...
View ArticleItsMyCode: Python ValueError: could not convert string to float
ItsMyCode |If you convert a string object into a floating-point in Python many times you will get a ValueError: could not convert string to float. Usually, this happens if the string object has an...
View ArticleItsMyCode: Python String lower()
ItsMyCode |Python String lower() method converts all the uppercase characters in a string to lowercase characters and returns the string as output.lower() Syntax The Syntax of lower() method...
View ArticleItsMyCode: numpy.argmax() in Python
ItsMyCode |The numpy.argmax() function returns the indices of the maximum values along an axis. In case of multiple occurrences of the maximum values, the indices corresponding to the first occurrence...
View ArticleItsMyCode: [Solved] NumPy.ndarray object is Not Callable Python
ItsMyCode |In Python, the array will be accessed using an indexing method. Similarly, the NumPy array also needs to be accessed through the indexing method. In this article, we will look at how to fix...
View ArticleMike Driscoll: Python Black Friday / Cyber Monday Sales 2021
Lots of companies do sales on Black Friday, sometimes for the entire week. I am going to link to Black Friday sales for Python-related materials, including my own, in this article.I am having a sale...
View ArticlePython Software Foundation: Loren Crary has joined the PSF as its Director of...
The Python Software Foundation (PSF) is excited to welcome Loren Crary as our new Director of Resource Development!Financial sustainability is critical to the PSF and the entire Python ecosystem as...
View ArticlePython for Beginners: Breadth First Traversal in Python
A graph is a non linear data structure. We often use graphs to represent different real world objects like maps and networks. In this article, we will study breadth first traversal to print all the...
View Article