Python
PyDev of the Week: Martha Teye
This week we welcome Martha Teye (@teye_martha) as our PyDev of the Week! Martha talks about her first big Python project in this YouTube video where she creates a chat bot. You can connect with Read more…
This week we welcome Martha Teye (@teye_martha) as our PyDev of the Week! Martha talks about her first big Python project in this YouTube video where she creates a chat bot. You can connect with Read more…
I am joining some of my fellow indie content creators to create a FREE Python book bundle for the month of October 2021! The Indie Python Extravaganza! A collection of books that will help you Read more…
Software developers have to work with data. More often than not, the data that you work with will need to be available to multiple developers as well as multiple users at once. The typical solution Read more…
When you first get started as a programmer or software developer, you usually start by writing code that prints to your console or standard out. A lot of students are also starting out by writing Read more…
The Portable Document Format (PDF) is a very popular way to share documents across multiple platforms. The goal of the PDF is to create a document that will look the same on multiple platforms and Read more…
This week we welcome Tony Roberts as our PyDev of the Week! Tony is the creator and maintainer of PyXLL, a paid add-in for Microsoft Excel that lets you script Excel using the Python programming Read more…
The Python programming language comes with its own built-in Integrated Development Environment (IDE) called IDLE. The name, IDLE, supposedly came from the actor, Eric Idle, who was a part of the Monty Python troupe, which Read more…
There are many common file types that you will need to work with as a software developer. One such format is the CSV file. CSV stands for “Comma-Separated Values” and is a text file format Read more…
Introducing the Early Access Program for PyCharm 2021.3, where you can try the new PyCharm features before they are officially released! This program is designed to give you a chance to try all the improvements Read more…
Assignment expressions were added to Python in version 3.8. The general idea is that an assignment expression allows you to assign to variables within an expression. The syntax for doing this is: NAME := expr Read more…