Tuesday, October 12, 2021

PyCoder’s Weekly: Issue #494 (Oct. 12, 2021)

#494 – OCTOBER 12, 2021
View in Browser »

The PyCoder’s Weekly Logo


Beating C and Java, Python Becomes the #1 Most Popular Programming Language, Says TIOBE

ZDNet reports that Python “is now the most popular language, according to one popularity ranking.” “For the first time in more than 20 years we have a new leader of the pack…” the TIOBE Index announced this month. “The long-standing hegemony of Java and C is over.”
SLASHDOT.ORG

Python C API: Add Functions to Access PyObject

“The PyObject structure prevents indirectly to optimize CPython. We will see why and how I prepared the C API to make this structure opaque. It took me 1 year and a half to add functions and to introduce incompatible C API changes (fear!)”
VICTOR STINNER

Improve Inefficient App Code With Datadog Application Performance Monitoring

alt

Datadog’s Continuous Profiler allows you to measure code performance changes over time. Quickly identify and optimize the most time- and resource-consuming parts in your application code in order to improve MTTR and enhance user experience. Give it a try with a free trial →
DATADOG sponsor

Using Pygame to Build an Asteroids Game in Python

In this course, you’ll build a clone of the Asteroids game in Python using Pygame. Step by step, you’ll add images, input handling, game logic, sounds, and text to your program.
REAL PYTHON course

Exploring the New Features of Python 3.10

Python 3.10 is here! This week on the show, two former guests and Real Python authors return to talk about the new features and changes in Python 3.10.
REAL PYTHON podcast

Python Jobs

Senior Python Engineer @ Moody's AI & ML Center of Excellence (New York, NY)

Moody's

Senior Software Engineer (Washington D.C.)

Quorum

Senior Backend Software Engineer (Anywhere)

Clay

Software Engineer (Anywhere)

1Point21 Interactive

More Python Jobs >>>

Articles & Tutorials

Representing Rational Numbers With Python Fractions

In this tutorial, you’ll learn about the Fraction data type in Python, which can represent rational numbers precisely without the rounding errors in binary arithmetic. You’ll find that this is especially important in financial and other high-precision applications.
REAL PYTHON

Tips for Debugging With print()

“If you’re embarrassed at debugging with print(), please don’t be - it’s perfectly fine! Many bugs are easily tackled with just a few checks in the right places. As much as I love using a debugger, I often reach for a print() statement first.”
ADAM JOHNSON

Accelerate Your Python Apps With Apache Cassandra™ NoSQL. Register for an Astra DB Demo

alt

Scale data for your Django, Flask, FastAPI apps with our multi-cloud, serverless DBaaS–built on Apache Cassandra™. Painless APIs, free for developers. Get 80 Gigabytes of Storage Free Every Month. Explore Astra DB now →
DATASTAX sponsor

Python’s sum(): The Pythonic Way to Sum Values

In this step-by-step tutorial, you’ll learn how to use Python’s sum() function to add numeric values together. You also learn how to concatenate sequences, such as lists and tuples, using sum().
REAL PYTHON

Understanding All of Python, Through Its Builtins

“Python has a whole lot of builtins that are unknown to most people. This guide aims to introduce you to everything that Python has to offer, through its seemingly obscure builtins.”
TUSHAR SADHWANI

How to Generate a PDF With Python

Learn how to create a PDF with Python and ReportLab. You’ll learn about Canvas methods, PLATYPUS, Paragraphs, Tables and more.
MIKE DRISCOLL

Speed Up Your Arduino Designs and Debugging With Dr.Duino

Arduino users worldwide agree that Dr.Duino kits are the easiest way to design and debug projects. Build amazing projects without even needing a breadboard. Right now, get a FREE Arduino boot camp course with every kit. (Limited to the first 200 kits)
DR.DUINO sponsor

Projects & Code

Events

PyMNTos

October 14, 2021
PYTHON.MN

Python Atlanta

October 14, 2021
MEETUP.COM

Chattanooga Python User Group

October 15 to October 16, 2021
MEETUP.COM

deploy by DigitalOcean

November 16 to November 17, 2021
DIGITALOCEAN


Happy Pythoning!
This was PyCoder’s Weekly Issue #494.
View in Browser »

alt

[ Subscribe to 🐍 PyCoder’s Weekly 💌 – Get the best Python news, articles, and tutorials delivered to your inbox once a week >> Click here to learn more ]



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...