IslandT: How to write a python program with PyCharm
In this article, I am going to show you how to write your first program in the PyCharm community edition. PyCharm is the IDE I am using to write my Python program since 2019 and it is a fantastic IDE...
View ArticleAnwesha Das: Python for Everyone, yes it is
I moved to Sweden a few months back. I met a lot of women like me who came from different countries. Many of them had flourishing careers in their respective countries. Teacher, architect, economist,...
View ArticleReal Python: Building a Site Connectivity Checker
Building a site connectivity checker in Python is an interesting project to level up your skills. With this project, you’ll integrate knowledge related to handling HTTP requests, creating command-line...
View ArticleMike Driscoll: Python 101 - An Intro to Functions
Functions are reusable pieces of code. Anytime you find yourself writing the same code twice, that code should probably go in a function.For example, Python has many built-in functions, such as dir()...
View ArticlePython Bytes: #290 Sentient AI? If so, then what?
<p><strong>Watch the live stream:</strong></p> <a href='https://www.youtube.com/watch?v=E-yIQgq08jI' style='font-weight: bold;'>Watch on YouTube</a><br>...
View ArticlePyBites: Automating the Boring Stuff and Plotting Student Data
My name is Russell Helmstedter. I am a middle school math and computer science teacher at De Anza Academy of Technology & the Arts (DATA). My first exposure to Python was in March of 2020. For some...
View ArticlePyCoder’s Weekly: Issue #531 (June 28, 2022)
#531 – JUNE 28, 2022View in Browser »Build a Tic-Tac-Toe Game With Python and Tkinter In this step-by-step project, you’ll learn how to create a tic-tac-toe game using Python and the Tkinter GUI...
View ArticleIsrael Fruchter: Takes from pyconil 2022
Takes from pyconil 2022First in person conference I attend since Covid-19, was fun to meet some of the familiar faces and meet a few new ones. I’ve tried live tweeting, but seem like I’m not very good...
View ArticlePython for Beginners: Largest Element in a List in Python
We often use lists to store numbers. In this article, we will discuss different ways to find the largest element in a list in python.Largest Element in a List Using the sort() Method in PythonIf a list...
View ArticleReal Python: Python Stacks, Queues, and Priority Queues in Practice
Queues are the backbone of numerous algorithms found in games, artificial intelligence, satellite navigation, and task scheduling. They’re among the top abstract data types that computer science...
View ArticlePyBites: Data engineering involves more Python than you might think!
Listen here:This week we have Christo back on the show to talk about his experience in the data engineering field.He shares some valuable tips how to become a more effective data engineer which,...
View ArticleMike Driscoll: Using Python to Serve Files Locally (Video)
Did you know you can serve files on your local network using Python? It's easy when you use the built-in HTTP server!You can even use this technique to transfer files to your phone!Learn more about...
View ArticlePyBites: The Importance of Disconnecting as a Developer
You don’t need library to download the scent of honeysuckle. You can hear the music of a chattering creek without a secure connection or authentication. We spend so much time connected to and with our...
View ArticleListenData: Pointwise mutual information (PMI) in NLP
Natural Language Processing (NLP) has secured so much acceptance recently as there are many live projects running and now it's not just limited to academics only. Use cases of NLP can be seen across...
View ArticleIslandT: Create a sale application project with Python
The old project starts againAfter a while of stopping this project has started again, I am going to edit a few lines of code in this project and then added in brand new sections in the next post but in...
View ArticlePyCharm: PyCharm 2022.2 EAP 4 Is Out!
The fourth EAP build supports another Python 3.11 PEP, gets Angular standalone components, improves code insight for ParamSpec, fixes long-awaited debugging issues for WSL projects and the WSL...
View ArticleMike Driscoll: How to Convert CSV to Excel with Python and pandas (Video)
Learn how to use 3 lines of code to transform a CSV file to Excel using Python and the pandas package!Also demonstrates how to fix issues when things go wrong!The post How to Convert CSV to Excel with...
View ArticlePython Morsels: How I made a dataclass remover
My journey creating a dataclass converter by using abstract syntax trees, match-case, the dedent utility and more. You may learn something new along the way.Table of contentsHow does this...
View ArticleItsMyCode: [Solved] TypeError: missing 2 required positional arguments
If we have a function that accepts 2 arguments, and while calling the method, if we do not pass those 2 required arguments Python interpreter will throw TypeError: missing 2 required positional...
View Article