Planet Python RSS
214 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
ItsMyCode: Check if string is empty or not in Python

Link: https://itsmycode.com/check-if-string-is-empty-or-not-in-python/

ItsMyCode |
In this article, you will learn how to check if string is empty or not using different approaches with examples.
Python program to check if string is empty or not
In Python, strings are an
ItsMyCode: How to Reverse a String in Python

Link: https://itsmycode.com/how-to-reverse-a-string-in-python/

ItsMyCode |
Python has many functions for string manipulation. However, the Python string library does not have any built-in reverse() function to reverse a string.
Reverse a string in Python
Let us l
Inspired Python: Game Boy Emulator: Writing the Z80 Disassembler

Link: https://www.inspiredpython.com/course/game-boy-emulator/game-boy-emulator-writing-the-z80-disassembler


Game Boy Emulator: Writing the Z80 Disassembler
Let’s continue where we left off in the with a deep dive into the Game Boy’s opcodes and operands – the language of the Z80 CPU – and how to make sens
Mike Driscoll: PyDev of the Week: Alex Hall

Link: https://www.blog.pythonlibrary.org/2021/12/13/pydev-of-the-week-alex-hall/



This week we welcome Alex Hall as our PyDev of the Week! Alex is the creator of https://futurecoder.io/, a platform for learning Python. You can see what other projects Alex works on over at GitHub.
Quansight Labs Blog: A year of Jupyter community calls

Link: https://labs.quansight.org/blog/2021/10/jupyter-community-calls/

A framing for open source is that the software and code are kernels of community.
The code, and its abstractions, unite developers and their patrons;
a struggle for growing/evolving open communities
Python⇒Speed: It's time to stop using Python 3.6

Link: https://pythonspeed.com/articles/stop-using-python-3.6/

Upgrading to new software versions is work, and work that doesn’t benefit your software’s users.
Users care about features and bug fixes, not how up-to-date you are.
But there is only so much time you
Real Python: Java vs Python: Basic Python for Java Developers

Link: https://realpython.com/java-vs-python/

Python is a general-purpose programming language. You can understand its growth in the last couple of years by considering its approachability for learning and its high suitability for data analysis,
Made With Mu: A Request for Help: Translations please!

Link: https://madewith.mu/mu/users/2021/12/13/translate.html


Education is a right, not a privilege.
It means that access to education should be as easy as possible given the
different and diverse circumstances of learners.
The lingua franca of coding is
Englis
ItsMyCode: Python Exponent | Calculate exponent in Python

Link: https://itsmycode.com/python-exponent-calculate-exponent-in-python/

ItsMyCode |
Exponential is a mathematical operation where the number gets multiplied to a definite set of times to itself. For Example, 2 to the 3rd (written like this: 23) means: 2 x 2 x 2 = 8. 
How
Wingware: Wing Python IDE Version 8.1.2 - December 13, 2021

Link: https://wingware.com/news/2021-12-13

Wing 8.1.2 improves debug stepping & exception handling in async coroutines & generators,
correctly detects package manager type on remote hosts, fixes several issues with
debugging, analysis & projec
Read the Docs: Read the Docs newsletter - December 2021

Link: https://blog.readthedocs.com/newsletter-december-2021/


Welcome to the latest edition of our monthly newsletter, where we
share the most relevant updates around Read the Docs,
offer a summary of new features we shipped
during the previous month,
and share
Real Python: Host Your Django Project on Heroku

Link: https://realpython.com/courses/host-your-django-project-on-heroku/

As a novice web developer, you’ve built your portfolio app and shared your code on GitHub. Perhaps, you’re hoping to attract technical recruiters to land your first programming job. Many coding bootca
Python for Beginners: ASCII value in Python

Link: https://www.pythonforbeginners.com/basics/ascii-value-in-python

There are many languages and hence an unlimited number of symbols in this world.  All the symbols are represented in a computer using different types of encoding such as ASCII and Unicode. In this art
PyCoder’s Weekly: Issue #503 (Dec. 14, 2021)

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

#503 – DECEMBER 14, 2021 View in Browser » A Reverse Chronology of Some Python Features “To help those who wish for the ‘good old days’ of some older Python version, I thought I would write down
Glyph Lefkowitz: Declaratively

Link: https://glyph.twistedmatrix.com/2021/12/declaratively.html

This weekend a catastrophic bug in log4j2 was
disclosed,
leading to the potential for remote code execution on a huge number of
unpatched endpoints.
In this specific case, it turns out there was not r
Python Software Foundation: Georgi Ker Awarded the PSF Community Service Award for Q4 2020

Link: http://pyfound.blogspot.com/2021/12/georgi-ker-awarded-psf-community.html

Georgi Ker was awarded the Python Software Foundation 2020 Q4 Community Service Award.RESOLVED that the Python Software Foundation award the Q4 2020 Community Service Award to Georgi Ker. Georgi has b
Python GUIs: An introduction to PyQt6 Signals, Slots and Events — Triggering actions in response to user behaviors and GUI events (updated for PyQt6)

Link: https://www.pythonguis.com/tutorials/pyqt6-signals-slots-events/

So far we've created a window and added a simple push button widget to it, but the button doesn't do anything. That's not very useful at all -- when you create GUI applications you typically want them
Python for Beginners: How to Get a List as User Input in Python

Link: https://www.pythonforbeginners.com/basics/how-to-get-a-list-as-user-input-in-python

We can take a value as input from the user using the input() function. What if we have to get a list of values as input? In this article, we will discuss two ways to get a list as  user input in Pytho
ItsMyCode: Python TypeError: ‘NoneType’ object is not subscriptable

Link: https://itsmycode.com/python-typeerror-nonetype-object-is-not-subscriptable/

ItsMyCode |
If you subscript any object with None value, Python will raise TypeError: ‘NoneType’ object is not subscriptable exception. The term subscript means retrieving the values using indexing.
I
Talk Python to Me: #345: 10 Tips and Tools for Developer Productivity

Link: https://talkpython.fm/episodes/show/345/10-tips-and-tools-for-developer-productivity

You know that feeling when one of your developer friends or colleague tells you about some amazing tool, library, or shell environment that you never heard of that you just have to run out and try rig