Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Podcast.__init__: Network Analysis At The Speed Of C With The Power Of Python Using NetworKit

Link: https://www.pythonpodcast.com/networkit-efficient-network-analysis-episode-327/

Analysing networks is a growing area of research in academia and industry. In order to be able to answer questions about large or complex relationships it is necessary to have fast and efficient algor
Moshe Zadka: Better Outage Retrospectives

Link: https://orbifold.xyz/better-outage-retrospectives.html

Originally published on
Enable Architect.
Modern computer systems supply business-critical services everywhere
-- from Amazon providing shopping services to
Healthcare.gov
providing enrollment in heal
Mike Driscoll: PyDev of the Week: Daniel Zingaro

Link: https://www.blog.pythonlibrary.org/2021/08/16/pydev-of-the-week-daniel-zingaro/

This week we welcome Daniel Zingaro as our PyDev of the Week! Daniel is the author of Learn to Code by Solving Problems: A Python Programming Primer and Algorithmic Thinking from No Starch Books. If y
Real Python: Python News: What's New From July 2021?

Link: https://realpython.com/python-news-july-2021/

July 2021 was an exciting month for the Python community! The Python Software Foundation hired the first-ever CPython Developer-in-Residence—a full-time paid position devoted to CPython development. I
Python Morsels: Using the walrus operator

Link: https://www.pythonmorsels.com/topics/using-walrus-operator/




Transcript
Let's talk about Python's walrus operator.
An assignment followed by a conditional check
We have a function called get_quantitiy that accepts a string argument which represents a number
John Ludhi/nbshare.io: Python Iterators And Generators

Link: https://www.nbshare.io/notebook/150586282/Python-Iterators-And-Generators/








Iterators and Generators








In this notebook, we would explore the difference between iterators and generators, how to use them and also the best use cases for each of them.








Iterat
Python for Beginners: How to Split a String Between Characters in Python

Link: https://www.pythonforbeginners.com/basics/how-to-split-a-string-between-characters-in-python

In this guide to splitting strings in Python, we’ll explore the various ways we can use the language to precisely split a string. When we split strings between characters in Python, it’s possible to e
Stack Abuse: Depth-First Search (DFS) in Python - Theory and Implementation

Link: https://stackabuse.com/depth-first-search-dfs-in-python-theory-and-implementation/

Introduction
Originating from mathematics, graphs are now widely used data structures in Computer Science. One of the first problems we encounter when constructing any algorithm regarding Graph proces
PyCoder’s Weekly: Issue #486 (Aug. 17, 2021)

Link: https://pycoders.com/issues/486

#486 – AUGUST 17, 2021 View in Browser » Introducing the Python Launcher for Unix Python Core Developer and Steering Council member Brett Cannon recently released his Python Launcher for UNIX pr
Python Software Foundation: Shamika Mohanan has joined the PSF as Packaging Project Manager

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/cVoVg81ibV0/shamika-mohanan-has-joined-psf-as.html

The Python Software Foundation (PSF) is excited to welcome Shamika Mohanan as our new Packaging Project Manager! You can learn specifics about the role in our post announcing the position.Recognizing
Quansight Labs Blog: Is GitHub Actions suitable for running benchmarks?

Link: https://labs.quansight.org/blog/2021/08/github-actions-benchmarks/


Benchmarking software is a tricky business. For robust results, you need dedicated
hardware that only runs the benchmarking suite under controlled conditions. No other
processes! No OS updates! Nothi
Python for Beginners: What is Namespace in Python?

Link: https://www.pythonforbeginners.com/basics/what-is-namespace-in-python

Namespaces are one honking great idea — let’s do more of those! Namespaces are the constructs used for organizing the names assigned to the objects in a python program. In this article, we will unders
Daniel Roy Greenfeld: The Thirty Minute Rule

Link: https://daniel.feldroy.com/posts/thirty-minute-rule

When it comes to coding (or anything related to it) there's a rule I believe in with all my heart. It's the Thirty Minute Rule.
The rule is that if anyone gets stuck on something for more than 30 minu
John Ludhi/nbshare.io: Python Sort And Sorted

Link: https://www.nbshare.io/notebook/520115360/Python-Sort-And-Sorted/








Python Sort And Sorted








In this notebook, we will learn about how to use Python sort and sorted methods to sort different types of data structures.








Let us start with simple examp
AI Pool: Cuda Version

Link: https://ai-pool.com/d/cuda_version

How to know the version of Cuda installed on your pc? I'm using Keras with TensorFlow back-end, but I need to detect the version of Cuda in my code. It does not matter the solution is with Keras