Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
TechBeamers Python: 10 Python Beginner Projects for Ultimate Practice

Link: https://www.techbeamers.com/python-beginner-projects-for-practice/

In this tutorial, we’ll explore a variety of Python beginner projects that cover different aspects of programming. As you know programming is best learned by doing, and Python is an excellent language
Armin Ronacher: The Life and Death of Open Source Companies

Link: http://lucumr.pocoo.org/2023/12/25/life-and-death-of-open-source

You likely know that I've contributed significantly to the Open Source community, that I work for an Open Source Company, that we got shit for calling ourselves
Open Source and that we
subsequently cr
TechBeamers Python: Python vs C++ – Is Python or C++ Better?

Link: https://www.techbeamers.com/python-vs-c-plus-plus/

Python and C++ are both powerful programming languages, but they cater to different needs and come with distinct features. Deciding which language is better depends on various factors, including the n
TechBeamers Python: A Beginner’s Guide to Linked Lists in Python

Link: https://www.techbeamers.com/linked-lists-in-python/

Linked lists are like a series of connected boxes, where each box holds a piece of information and points to the next box. They’re a cool way to organize data in Python. Let’s check out how to use lin
TechBeamers Python: Multiple Ways to Loop Through a Dictionary in Python

Link: https://www.techbeamers.com/loop-through-a-dictionary-in-python/

Dictionaries are a fundamental data structure in Python, offering a powerful way to store and organize data. When it comes to working with dictionaries, one common task is iterating through their key-
TechBeamers Python: How to Check If Python List is Empty

Link: https://www.techbeamers.com/check-if-python-list-is-empty/

Checking whether a Python list is empty is a fundamental task in programming. An empty list often signals the absence of data or the need for specific handling. In this tutorial, we will explore vario
TechBeamers Python: How to Get the Current Timestamp as a String in Python

Link: https://www.techbeamers.com/get-current-timestamp-in-python/

Dealing with timestamps is common in programming, especially when you need to record events or log information. In Python, there are various ways to get the current timestamp as a string. In this simp
PyCoder’s Weekly: Issue #609 (Dec. 26, 2023)

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

#609 – DECEMBER 26, 2023 View in Browser » A lot has happened in the Python ecosystem in 2023 and with our final issue of the year, we’re recapping the most popular links in PyCoders this year. Th
TechBeamers Python: 20 Real-time Problems based on Concatenated Strings in Python with Solutions

Link: https://www.techbeamers.com/concatenated-strings-in-python/

Here are 20 real-time problems related to concatenated strings in Python, along with their sample solutions: Each problem revolves around concatenated strings, ranging from the straightforward to the
Mark Dufour: Shed Skin restricted-Python-to-C++ compiler 0.9.6

Link: http://shed-skin.blogspot.com/2023/12/shed-skin-restricted-python-to-c.html

I recently decided to sit down and finally port Shed Skin, an experimental restricted-Python-to-C++ compiler in the works since 2005 or so, to Python3. Three painful months and a total diff of 50k lin
TechBeamers Python: How to Find a Job in Python – Things You Need to Do

Link: https://www.techbeamers.com/how-to-find-a-job-in-python/

Are you eager to find a job in Python? Whether you’re a recent graduate or an experienced professional, navigating the job market in the Python ecosystem can be both challenging and rewarding. Your Es
TechBeamers Python: How to Get the Working Directory in Python

Link: https://www.techbeamers.com/get-working-directory-in-python/

There are multiple ways to get the working directory in Python. Let’s check them out one by one. Later, you can decide which is the most suitable for your case. What are Different Methods to Get the W
TechBeamers Python: Python Str Function Explained in Detail

Link: https://www.techbeamers.com/str-function-in-python/

In this tutorial, we will delve into the str function in Python to understand its capabilities, usage, and practical applications. Python, being a versatile and user-friendly programming language, off
TechBeamers Python: Understanding the Floor Function in Python

Link: https://www.techbeamers.com/floor-function-in-python/

The floor function in Python is a mathematical operation that rounds down a given number to the nearest integer that is less than or equal to the original number. In this tutorial, we will delve into
Brett Cannon: My proof-of-concept record type

Link: https://snarky.ca/my-proof-of-concept-record-type/

Back in June, I proposed a struct syntax for Python. I shared the post on Mastodon and got some feedback. Afterwards I thought about what I heard and talked it over with some folks. I&aposve now coded
Ned Batchelder: Coverage.py with sys.monitoring

Link: https://nedbatchelder.com/blog/202312/coveragepy_with_sysmonitoring.html

New in Python 3.12 is sys.monitoring, a
lighter-weight way to monitor the execution of Python programs.
Coverage.py 7.4.0 now
can optionally use sys.monitoring instead of
sys.settrace, the facility th
TechBeamers Python: Top 30 Data Engineer Interview Questions with Answers

Link: https://www.techbeamers.com/data-engineer-interview-questions/

If you are planning a job in data engineering, then you should be well prepared for it. We have identified 30 data engineer interview questions that can help in your endeavor. During the interview, yo
Go Deh: How not to check for a key in a dictionary.

Link: http://paddy3118.blogspot.com/2023/12/how-not-to-check-for-key-in-dictionary.html

 I skim the Linkedin Python group and sometimes comment.A few days there was a poll asking for the way to check if a key is in a Python dictionary and as I write, more than half of the 900+ respondent