ItsMyCode: TypeError: ‘list’ object is not callable
ItsMyCode |The most common scenario where Python throws TypeError: ‘list’ object is not callable is when you have assigned a variable name as “list” or if you are trying to index the elements of the...
View ArticleItsMyCode: [Solved] Python can’t Multiply Sequence by non-int of type...
ItsMyCode |The TypeError: can’t multiply sequence by non-int of type ‘float’ occurs if we use the multiply operator between a string and float value. In this tutorial, we will learn what exactly...
View ArticlePython for Beginners: String Slicing in Python
Strings are one of the most used data structures in Python. We process all the text data using strings in Python. In this article, we will look at ways to extract a sub-string from a given string using...
View ArticlePyCharm: PyCharm 2021.3.1 Is Out!
The first minor release of PyCharm 2021.3 contains multiple bug fixes:We fixed a bug that prevented Django to run inside WSL. [PY-51679]We fixed a bug where PyCharm suggested importing abstract...
View ArticlePyCharm: Early Access PyCharm Podcast: PyCharm and the 2021.3 release
In this episode, Nafiul talks to Andrey Vlasovskikh, PyCharm’s team lead, and Aleksei Kniazev, responsible for PyCharm’s web frameworks support, about the 2021.3 PyCharm release. They talked about the...
View ArticleKushal Das: Johnnycanencrypt 0.6.0 released
A few days ago I released 0.6.0 of Johnnycanencrypt. It is a Python module written in Rust for OpenPGP using the amazing sequoia-pgp library. It allows you to access/use Yubikeys (without gpg-agent)...
View ArticleMichał Bultrowicz: Make and entr for code validation during editing
For a while now, I’ve been wondering how to combine entr (which automatically runs commands on file changes) with the way I setup project validation (both for CI/CD and for local developer usage) with...
View ArticleStack Abuse: Parsing XML with BeautifulSoup in Python
IntroductionExtensible Markup Language (XML) is a markup language that's popular because of the way it structures data. It found usage in data transmission (representing serialized objects) and...
View ArticlePython for Beginners: Factors Of A Number In Python
You might have heard about multiples and factors of a number in Python. If you are reading this blog, I can definitely tell you that you are looking to write a program for finding factors of a number....
View ArticleZero to Mastery: Python Monthly Newsletter 💻🐍 December 2021
25th issue of the Python Monthly Newsletter! Read by 20,000+ Python developers every month. This monthly Python newsletter covers the latest Python news so that you stay up-to-date with the industry...
View ArticleCodementor: Geospatial Data in Python - Interactive Visualization
A step by step tutorial to visualize geospatial data on interactive maps using Python and Folium.
View ArticleStack Abuse: Count Number of Word Occurrences in List Python
IntroductionCounting the word frequency in a list element in Python is a relatively common task - especially when creating distribution data for histograms.Say we have a list ['b', 'b', 'a'] - we have...
View ArticleTryton News: Newsletter January 2022
The Tryton team wishes you a happy new year. Here are the changes that the team has already prepared for the next version.Changes for the UserWe store the factors used to allocate landed costs. They...
View ArticlePython GUIs: Creating Dialogs and Alerts in PySide6 — Notify your users and...
Dialogs are useful GUI components that allow you to communicate with the user (hence the name dialog). They are commonly used for file Open/Save, settings, preferences, or for functions that do not fit...
View ArticleListenData: Learn Python for Data Science
This tutorial would help you to learn Data Science with Python by examples. It is designed for beginners who want to get started with Data Science in Python. Python is an open source language and it is...
View ArticlePodcast.__init__: A Friendly Approach To Regression Models For Programmers
SummaryStatistical regression models are a staple of predictive forecasts in a wide range of applications. In this episode Matthew Rudd explains the various types of regression models, when to use...
View ArticleKushal Das: 2021 blog review
Last year I wrote only a few blog posts, 19 exactly. That also reduced the views, to around 370k from 700k year before (iirc).The post about Getting TLS certificates for Onion services was the highest...
View ArticleReal Python: Build a Social Network With Django – Part 1
In this four-part tutorial series, you’ll build a social network with Django that you can showcase in your portfolio. This project will strengthen your understanding of relationships between Django...
View ArticlePython Morsels: Reading tracebacks in Python
When Python encounters an error in your code, it will print out a traceback. Let's talk about how to use tracebacks to fix our code.What are tracebacks?Here we have a program called...
View ArticleDjango Weblog: Django Developers Survey 2021 Results
We are excited to share the results of the annual Django Developers Survey which was conducted this year in collaboration with JetBrains. More than 7,000 Django users from almost 140 countries took the...
View Article