Python for Beginners: Remove Substring From String in Python
While handling text data in python, we sometimes need to remove a specific substring from the text. In this article, we will discuss different ways to remove a substring from a string in Python.Table...
View ArticlePython Software Foundation: Announcing Python Software Foundation Fellow...
The PSF is pleased to announce its second batch of PSF Fellows for 2022! Let us welcome the new PSF Fellows for Q2! The following people continue to do amazing things for the Python community:Archana...
View ArticleReal Python: Python News: What's New From June 2022
June 2022 brought a flurry of exciting news for the Python community! The PSF received funding for a new role focused on security, and held elections for four seats on the board of directors. Results...
View ArticleMike Driscoll: An Intro to Python's namedtuple (Video)
Learn the basics of Python'snamedtuplein this video tutorial by Mike DriscollWhat You'll Learn:Regular TuplesWhat is a namedtuple?Creating a namedtupleConverting a dict to a namedtupleTyping a...
View ArticlePyBites: Learning Rich by making a color searcher command line app
The other day I wanted to get serious with the awesome Rich library. As we always say: you have to build to really learn + need ideas? Scratch your own itch. If you’re struggling for ideas, see what...
View ArticlePyBites: The why and how of networking to boost your Python career
Listen here:if you’re not a fan of the show, it’s Jason’s fault. If you’re a fan of the show, it’s Jason’s fault.This week the man that gave us the golden tip to start a podcast, Jason Wattier.Jason...
View ArticlePython for Beginners: Convert String to List in Python
Strings and lists are the most used python objects. Sometimes, while manipulating strings, we need to convert a string to a list. In this article, we will discuss different ways to convert a string to...
View ArticlePyCharm: PyCharm 2022.2 EAP 5 Is Out!
In this EAP release we looked into improvements for Docker and further enabling WSL support.A new build is available from our website, via the Toolbox App, or as a snap package (if you are using...
View ArticleThe Python Coding Blog: Part 2: Simulating a Tennis Match Using...
How does the likelihood of winning a tennis match change as the likelihood of winning a single point changes? How about the probability of a best-of-five match ending in three sets? Let’s have some fun...
View ArticlePython Morsels: Using virtual environments in Python
Virtual environments can isolate the dependencies for your different projects. It's a best practice to make a new virtual environment (using the venv module) for each Python project you work on.Table...
View ArticlePython GUIs: Why do I need to pass sys.argv or [] when creating an instance...
The QApplication object is the core of every Qt Widgets application. Every application needs one and only one QApplication object to function. This object starts and holds the main event loop of your...
View ArticlePython Engineering at Microsoft: Python in Visual Studio Code – July 2022...
We’re excited to announce that the July 2022 release of the Python and Jupyter extensions for Visual Studio Code are now available.This release includes inlay type hints with Pylance and improvements...
View ArticlePython for Beginners: Find All Occurrences of a Substring in a String in Python
A substring is a contiguous sequence of one or more characters in a string. In this article, we will discuss different ways to find all occurrences of a substring in a string in python. Table of...
View ArticlePython Bytes: #291 Wait, you have how many licenses?!?
<p><strong>Watch the live stream:</strong></p> <a href='https://www.youtube.com/watch?v=U6KDaVWw0ko' style='font-weight: bold;'>Watch on YouTube</a><br>...
View ArticleTalk Python to Me: #372: Applied mathematics with Python
Often when we learn about or work with Math, it's done so in a very detached style. You might learn the rules and techniques for differentiation, for example. But how often do you get to apply them to...
View ArticlePyBites: 5 tips for overcoming imposter syndrome …
“I don’t belong here!”, “Who the hell am I to …”You’re not alone! Imposter syndrome is widespread in our industry.Imposter syndrome is real! Here are 5 tips to better deal with it:1. Talk with...
View ArticleArmin Ronacher: Congratulations: We Now Have Opinions on Your Open Source...
I wrote plenty aboutsupply-chainissues and I'm afraid I have more opinions I would like to share. On Friday I along many others in the Python community "congratulated" me on having created a critical...
View Article