Real Python: Using the len() Function in Python
Link: https://realpython.com/len-python-function/
The len() function in Python is a powerful and efficient tool used to determine the number of items in objects, such as sequences or collections. You can use len() with various data types, including s
Link: https://realpython.com/len-python-function/
The len() function in Python is a powerful and efficient tool used to determine the number of items in objects, such as sequences or collections. You can use len() with various data types, including s
Realpython
Using the len() Function in Python – Real Python
In this tutorial, you'll learn how and when to use the len() Python function. You'll also learn how to customize your class definitions so that objects of a user-defined class can be used as arguments in len().
Test and Code: 223: Writing Stuff Down is a Super Power
Link: https://testandcode.com/episodes/223-writing-stuff-down
Taking notes well can help to listen better, remember things, show respect, be more accountable, free up mind space to solve problems.This episode discussesthe benefits of writing things downpreparing
Link: https://testandcode.com/episodes/223-writing-stuff-down
Taking notes well can help to listen better, remember things, show respect, be more accountable, free up mind space to solve problems.This episode discussesthe benefits of writing things downpreparing
Test & Code
Test & Code | 223: Writing Stuff Down is a Super Power
Taking notes well can help to listen better, remember things, show respect, be more accountable, free up mind space to solve problems.This episode discussesthe benefits of writing things downprepar...
Real Python: Using the Python zip() Function for Parallel Iteration
Link: https://realpython.com/python-zip-function/
Python’s zip() function combines elements from multiple iterables. Calling zip() generates an iterator that yields tuples, each containing elements from the input iterables. This function is essential
Link: https://realpython.com/python-zip-function/
Python’s zip() function combines elements from multiple iterables. Calling zip() generates an iterator that yields tuples, each containing elements from the input iterables. This function is essential
Realpython
Using the Python zip() Function for Parallel Iteration – Real Python
In this step-by-step tutorial, you'll learn how to use the Python zip() function to solve common programming problems. You'll learn how to traverse multiple iterables in parallel and create dictionaries with just a few lines of code.
Go Deh: There's the easy way...
Link: http://paddy3118.blogspot.com/2024/11/theres-easy-way.html
Best seen on a larger than landscape phone Someone blogged about a particular problem:From: https://theweeklychallenge.org/blog/perl-weekly-challenge-294/#TASK1Given an unsorted array of integers, `i
Link: http://paddy3118.blogspot.com/2024/11/theres-easy-way.html
Best seen on a larger than landscape phone Someone blogged about a particular problem:From: https://theweeklychallenge.org/blog/perl-weekly-challenge-294/#TASK1Given an unsorted array of integers, `i
Blogspot
There's the easy way...
Best seen on a larger than landscape phone Someone blogged about a particular problem: From: https://theweeklychallenge.org/blog/perl-week...
Django Weblog: 2025 DSF Board Election Results
Link: https://www.djangoproject.com/weblog/2024/nov/17/2025-dsf-board-election-results/
The 2025 DSF Board Election has closed, and the following candidates have been elected:
Abigail Gbadago
Jeff Triplett
Paolo Melchiorre
Tom Carrick
They will all serve two years for their term.
Direc
Link: https://www.djangoproject.com/weblog/2024/nov/17/2025-dsf-board-election-results/
The 2025 DSF Board Election has closed, and the following candidates have been elected:
Abigail Gbadago
Jeff Triplett
Paolo Melchiorre
Tom Carrick
They will all serve two years for their term.
Direc
Django Project
2025 DSF Board Election Results
Posted by Thibaud Colas on Nov. 17, 2024
James Bennett: Introducing DjangoVer
Link: https://www.b-list.org/weblog/2024/nov/18/djangover/
Version numbering is hard, and there are lots of popular schemes out there for how to do it. Today I want to talk about a system I’ve settled on for my own Django-related packages, and which I’m calli
Link: https://www.b-list.org/weblog/2024/nov/18/djangover/
Version numbering is hard, and there are lots of popular schemes out there for how to do it. Today I want to talk about a system I’ve settled on for my own Django-related packages, and which I’m calli
James Bennett
Introducing DjangoVer
Version numbering is hard, and there are lots of popular schemes out there for how to do it. Today I …
Armin Ronacher: Playground Wisdom: Threads Beat Async/Await
Link: http://lucumr.pocoo.org/2024/11/18/threads-beat-async-await
It's been a few years since I wrote about my challenges with
async/await-based systems and how they just seem to not support back
pressure well. A few years later, I do not
think that this problem ha
Link: http://lucumr.pocoo.org/2024/11/18/threads-beat-async-await
It's been a few years since I wrote about my challenges with
async/await-based systems and how they just seem to not support back
pressure well. A few years later, I do not
think that this problem ha
Armin Ronacher's Thoughts and Writings
Playground Wisdom: Threads Beat Async/Await
Musings about async await again and why I think virtual threads
Python Software Foundation: Help power Python and join in the PSF year-end fundraiser & membership drive!
Link: https://pyfound.blogspot.com/2024/11/help-power-python-2024-fundraiser.html
The Python Software Foundation (PSF) is the charitable organization behind Python, dedicated to advancing, supporting, and protecting the Python programming language and the community that sustain
Link: https://pyfound.blogspot.com/2024/11/help-power-python-2024-fundraiser.html
The Python Software Foundation (PSF) is the charitable organization behind Python, dedicated to advancing, supporting, and protecting the Python programming language and the community that sustain
Python Software Foundation Blog
Help power Python and join in the PSF year-end fundraiser & membership drive!
The Python Software Foundation (PSF) is the charitable organization behind Python, dedicated to advancing, supporting, and protecting ...
Real Python: Interacting With Python
Link: https://realpython.com/interacting-with-python/
There are multiple ways of interacting with Python, and each can be useful for different scenarios. You can quickly explore functionality in Python’s interactive mode using the built-in Read-Eval-Prin
Link: https://realpython.com/interacting-with-python/
There are multiple ways of interacting with Python, and each can be useful for different scenarios. You can quickly explore functionality in Python’s interactive mode using the built-in Read-Eval-Prin
Realpython
Interacting With Python – Real Python
In this tutorial, you'll explore the various ways of interacting with Python. You'll learn about the REPL for quick testing and running scripts, as well as how to work with IDEs, Jupyter Notebooks, and online interpreters.
Python Morsels: Python's pathlib module
Link: https://www.pythonmorsels.com/pathlib-module/
Python's pathlib module is the tool to use for working with file paths. See pathlib quick reference tables and examples.
Table of contents
A pathlib cheat sheet
The open function accepts Path objec
Link: https://www.pythonmorsels.com/pathlib-module/
Python's pathlib module is the tool to use for working with file paths. See pathlib quick reference tables and examples.
Table of contents
A pathlib cheat sheet
The open function accepts Path objec
Pythonmorsels
Python's pathlib module
Python's pathlib module is the tool to use for working with file paths. See pathlib quick reference tables and examples.
PyCharm
Link:
JetBrains AI Assistant 2024.3 is here! A highlight of this release is the flexibility to choose your preferred chat model. Select between Google Gemini, OpenAI, or local models to tailor interactions
Link:
JetBrains AI Assistant 2024.3 is here! A highlight of this release is the flexibility to choose your preferred chat model. Select between Google Gemini, OpenAI, or local models to tailor interactions
Python Bytes: #410 Entering the Django core
Link: https://pythonbytes.fm/episodes/show/410/entering-the-django-core
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://buttondown.com/carlton/archive/thoughts-on-djangos-core/?featured_on=pythonbytes">Thoughts on Django’s Core</a>
Link: https://pythonbytes.fm/episodes/show/410/entering-the-django-core
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://buttondown.com/carlton/archive/thoughts-on-djangos-core/?featured_on=pythonbytes">Thoughts on Django’s Core</a>
pythonbytes.fm
Entering the Django core
News and announcements from the Python community for the week of Nov 18th, 2024
Paolo Melchiorre: Thoughts on my election as a DSF board member
Link: https://www.paulox.net/2024/11/18/thoughts-on-my-election-as-a-dsf-board-member/
My thoughts on my election as a member of the Django Software Foundation (DSF) board of directors.
Link: https://www.paulox.net/2024/11/18/thoughts-on-my-election-as-a-dsf-board-member/
My thoughts on my election as a member of the Django Software Foundation (DSF) board of directors.
Paolo Melchiorre
Thoughts on my election as a DSF board member
My thoughts on my election as a member of the Django Software Foundation (DSF) board of directors.
👍1
Ned Batchelder: Loop targets
Link: https://nedbatchelder.com/blog/202411/loop_targets.html
I posted a Python tidbit about how for loops can assign
to other things than simple variables, and many people were surprised or even
concerned:params = {
"query": QUERY,
"page_size": 100,
}
Link: https://nedbatchelder.com/blog/202411/loop_targets.html
I posted a Python tidbit about how for loops can assign
to other things than simple variables, and many people were surprised or even
concerned:params = {
"query": QUERY,
"page_size": 100,
}
Nedbatchelder
Loop targets
People were surprised by my example of assigning to a dict item in a for loop. Here’s more explanation.
Mike Driscoll: How to Debug Your Textual Application
Link: https://www.blog.pythonlibrary.org/2024/11/19/how-to-debug-your-textual-application/
Textual is a great Python package for creating a lightweight, powerful, text-based user interface. That means you can create a GUI in your terminal with Python without learning curses! But what happen
Link: https://www.blog.pythonlibrary.org/2024/11/19/how-to-debug-your-textual-application/
Textual is a great Python package for creating a lightweight, powerful, text-based user interface. That means you can create a GUI in your terminal with Python without learning curses! But what happen
Mouse Vs Python
How to Debug Your Textual Application - Mouse Vs Python
Textual is a great Python package for creating a lightweight, powerful, text-based user interface. That means you can create a GUI in your terminal with
Zato Blog: IMAP and OAuth2 Integrations with Microsoft 365
Link: https://zato.io/en/blog/imap-oauth2-microsoft365.html
IMAP and OAuth2 Integrations with Microsoft 365
2024-11-19, by Dariusz Suchojad
Overview
This is the first in a series of articles about automation of and integrations with Microsoft 365 cloud
Link: https://zato.io/en/blog/imap-oauth2-microsoft365.html
IMAP and OAuth2 Integrations with Microsoft 365
2024-11-19, by Dariusz Suchojad
Overview
This is the first in a series of articles about automation of and integrations with Microsoft 365 cloud
Real Python: Working With TOML and Python
Link: https://realpython.com/courses/working-with-toml-python/
TOML—Tom’s Obvious Minimal Language—is a reasonably new configuration file format that the Python community has embraced over the last couple of years. TOML plays an essential part in the Python ecosy
Link: https://realpython.com/courses/working-with-toml-python/
TOML—Tom’s Obvious Minimal Language—is a reasonably new configuration file format that the Python community has embraced over the last couple of years. TOML plays an essential part in the Python ecosy
Realpython
Working With TOML and Python – Real Python
TOML is a configuration file format that's becoming increasingly popular in the Python community. In this video course, you'll learn the syntax of TOML and explore how you can work with TOML files in your own projects.
PyCharm: Code Faster with JetBrains AI in PyCharm
Link: https://blog.jetbrains.com/pycharm/2024/11/code-faster-with-jetbrains-ai-in-pycharm/
PyCharm 2024.3 comes with many improvements to JetBrains AI to help you code faster. I’m going to walk you through some of these updates in this blog post.
Natural language inline AI prompt
You can n
Link: https://blog.jetbrains.com/pycharm/2024/11/code-faster-with-jetbrains-ai-in-pycharm/
PyCharm 2024.3 comes with many improvements to JetBrains AI to help you code faster. I’m going to walk you through some of these updates in this blog post.
Natural language inline AI prompt
You can n
The JetBrains Blog
Code Faster with JetBrains AI in PyCharm | The PyCharm Blog
PyCharm 2024.3 comes with many improvements to JetBrains AI to help you code faster. I’m going to walk you through some of these updates in this blog post.
PyCoder’s Weekly: Issue #656 (Nov. 19, 2024)
Link: https://pycoders.com/issues/656
#656 – NOVEMBER 19, 2024 View in Browser » How to Debug Your Textual Application TUI applications require a full terminal which most IDEs don’t implement. To make matters more complicated, TUIs
Link: https://pycoders.com/issues/656
#656 – NOVEMBER 19, 2024 View in Browser » How to Debug Your Textual Application TUI applications require a full terminal which most IDEs don’t implement. To make matters more complicated, TUIs
Pycoders
PyCoder’s Weekly | Issue #656
Issue #656 of the PyCoder’s Weekly newsletter, published Nov. 19, 2024.
Python Insider: Python 3.14.0 alpha 2 released
Link: https://pythoninsider.blogspot.com/2024/11/python-3140-alpha-2-released.html
Alpha 2? But Alpha 1 only just came out!
https://www.python.org/downloads/release/python-3140a2/
This is an early developer preview of Python
3.14
Major
new features of the 3.14 series, compared to 3.
Link: https://pythoninsider.blogspot.com/2024/11/python-3140-alpha-2-released.html
Alpha 2? But Alpha 1 only just came out!
https://www.python.org/downloads/release/python-3140a2/
This is an early developer preview of Python
3.14
Major
new features of the 3.14 series, compared to 3.
Blogspot
Python Insider: Python 3.14.0 alpha 2 released