Python Pool: Type() Function | How to Check Data Type in Python
IntroductionPython has many built-in functions. In this tutorial, we will be discussing how to check the data-type of the variables in python by using type().As, while programming in Python, we came to...
View ArticleWeekly Python StackOverflow Report: (cclxviii) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2021-03-27 17:37:58 GMTPandas check if value in one multiindex column is...
View ArticleNed Batchelder: Gefilte Fish: gmail filter creation
At work, to keep up with mailing lists and GitHub notifications, I had more than fifty GMail filters. It wasn’t too bad to create them by hand with the GMail UI, but I’m sure there were filters there I...
View ArticleMike Driscoll: PyDev of the Week: Yuxi (Hayden) Liu
This week we welcome Yuxi (Hayden) Liu as our PyDev of the Week! Hayden is the author of Python Machine Learning By Example and other books. You can connect with Hayden on LinkedIn.Now let’s spend some...
View ArticleCodementor: How to build Linkolearn.com - Part 5: Informative Pages
In this part we are going to create a base template and set up the basic front page. Repo linkolearn05 (https://github.com/linkolearn/linkolearn05): Download, create venv, activate, install Shopyo...
View ArticleMade With Mu: Announcing Mu version 1.1.0-beta.3
Beta 3 is here (get it from the download page).From now on we hope to maintain a fortnightly release during the beta phase as things “come together”. Shown above is our wonderful final splash screen...
View ArticleZato Blog: API publish/subscribe between Zato services
One of the additions in the upcoming Zato 3.2 release of is an extension to its publish/subscribe mechanism that lets services publish messages directly to other services. Let's check how to use it and...
View ArticlePyPy: New HPy blog
Regular readers of this blog already know about HPy, a project which aims to develop a new C API for Python to make it easier/faster to support C extensions on alternative Python implementations,...
View ArticleReal Python: OrderedDict vs dict in Python: The Right Tool for the Job
Sometimes you need a Python dictionary that remembers the order of its items. In the past, you had only one tool for solving this specific problem: Python’s OrderedDict. It’s a dictionary subclass...
View ArticlePythonClub - A Brazilian collaborative blog about Python: Funções in place ou...
Eventualmente observo dificuldades de algumas pessoas em usar corretamente alguma função, seja porque a função deveria ser executada isoladamente, e utilizado a própria variável que foi passada como...
View ArticlePyCharm: The Past, Present and Future with Andrey
Sometime last week, I had the opportunity to sit down with Andrey Vlasovskikh and discuss where PyCharm is now, and where it plans to go into the future; trying to understand how we got here along the...
View ArticlePodcast.__init__: Make Your Code More Readable With The Magic Of Refactoring...
Writing code that is easy to read and understand will have a lasting impact on you and your teammates over the life of a project. Sometimes it can be difficult to identify opportunities for simplifying...
View ArticleTestDriven.io: Rapid Prototyping with Django, htmx, and Tailwind CSS
This tutorial looks at how to add htmx and Tailwind CSS to Django to reduce the amount of time it takes to create and style an interactive front-end.
View ArticleProgramiz: Python if...else Statement
In this article, you will learn to create decisions in a Python program using different forms of if..else statement.
View ArticleProgramiz: Polymorphism in Python
In this tutorial, we will learn about polymorphism, different types of polymorphism, and how we can implement them in Python with the help of examples.
View ArticleCodementor: Python code review checklist
How to cover all aspects of the code in a review.
View ArticleStack Abuse: Matplotlib Stack Plot - Tutorial and Examples
IntroductionThere are many data visualization libraries in Python, yet Matplotlib is the most popular library out of all of them. Matplotlib’s popularity is due to its reliability and utility - it's...
View ArticleReal Python: Understanding Python List Comprehensions
One of Python’s most distinctive features is the list comprehension, which you can use to create powerful functionality within a single line of code. However, many developers struggle to fully leverage...
View ArticleZero to Mastery: Python Monthly 💻🐍 March 2021
16th issue of Python Monthly! Read by 20,000+ Python developers every month. This monthly Python newsletter is focused on keeping you up to date with the industry and keeping your skills sharp, without...
View ArticleJuri Pakaste: Swift networking with AsyncHTTPClient
When you need to access resources over HTTP in Swift, in most cases the answer is URLSession from Foundation. On server side that's most probably not the right choice; there you are most likely running...
View Article