Planet Python RSS
212 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Stack Abuse: Matplotlib Box Plot - Tutorial and Examples

Link: https://stackabuse.com/matplotlib-box-plot-tutorial-and-examples/

Introduction
There are many data visualization libraries in Python, yet Matplotlib is the most popular library out of all of them. Matplotlib’s popularity is due to its reliability and utility - it's
Everyday Superpowers: SOLID Practice with Fizz Buzz

Link: https://everydaysuperpowers.dev/articles/solid-practice-with-fizz-buzz/

I'm convinced that the best way to grow as a developer is to practice. In particular, intentionally practicing things you aren't good at or haven't tried. In that vein, I started a weekly meeting at w
PyCoder’s Weekly: Issue #457 (Jan. 26, 2021)

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

#457 – JANUARY 26, 2021 View in Browser » Unravelling for Statements Learn how Python’s for statement works behind the scenes by diving into the bytecode and CPython source code. BRETT CANNON
Matthew Wright: Selection in pandas using query

Link: https://www.wrighters.io/selection-in-pandas-using-query/

The query method in pandas DataFrames provides some flexibility in code, and potential speedups using numexpr.The post Selection in pandas using query appeared first on wrighters.io.
Sebastian Witowski: 25 IPython Tips for Your Next Advent of Code

Link: https://switowski.com/blog/25-ipython-tips-for-your-next-advent-of-code


I’ve decided to skip last year’s Advent of Code edition. Mostly because I didn’t have time, but I also knew that I probably wouldn’t finish it. I’ve never finished any edition. I’m not very good at c
Mike Driscoll: An Intro to Python Virtual Environments

Link: https://www.blog.pythonlibrary.org/2021/01/27/an-intro-to-python-virtual-environments/

Python has the concept of the virtual environments built-in to the language. A Python virtual environment is an environment where you can install 3rd party packages for testing without affecting the s
Python Pool: Python getpass Explained With Examples

Link: https://www.pythonpool.com/python-getpass/?utm_source=rss&utm_medium=rss&utm_campaign=python-getpass

Hello geeks, and welcome in today’s article, we will cover Python getpass(). We will also look at the definition and application of this method. We will do all that with the help of examples. It is a
Python Pool: 8 Examples to Implement os.listdir() in Python

Link: https://www.pythonpool.com/python-listdir/?utm_source=rss&utm_medium=rss&utm_campaign=python-listdir

Hello coders!! This article will be learning about the os.listdir function in Python. The os module allows us to use the functionality dependent on the operating system in a portable manner. listdir()
Python Pool: Exploring numpy.ones Function in Python | np.ones

Link: https://www.pythonpool.com/numpy-ones/?utm_source=rss&utm_medium=rss&utm_campaign=numpy-ones

While doing some project which needs mathematical operations and calculations we use numpy library. In numpy, we have NumPy arrays which facilitate advanced mathematical and other types of operations
Python Morsels: Local and Global Variables

Link: https://www.pythonmorsels.com/topics/local-and-global-variables/





Transcript:
Let's talk about local and global variables in Python.
Reading global variables
We have a variable here called message, which points to the string Hello world:
>>> message = "Hello wor
Real Python: Stochastic Gradient Descent Algorithm With Python and NumPy

Link: https://realpython.com/gradient-descent-algorithm-python/

Stochastic gradient descent is an optimization algorithm often used in machine learning applications to find the model parameters that correspond to the best fit between predicted and actual outputs.
PyCharm: PyCharm 2020.3.3 Is Available

Link: http://feedproxy.google.com/~r/Pycharm/~3/n6TDVQmkKdo/

The final bug-fix release for PyCharm 2020.3 is out.
You can upgrade to v2020.3.3 with the Toolbox App, or right from the IDE, or by using snap if you are an Ubuntu user. It is also available for down
RoseHosting Blog: How to install Python 3.9 on Ubuntu 20.04

Link: https://www.rosehosting.com/blog/how-to-install-python-3-9-on-ubuntu-20-04/

Python is a free, open-source, and one of the most popular programming languages around the world. It is a versatile ...
Read moreHow to install Python 3.9 on Ubuntu 20.04
The post How to install Pyt
Stéphane Wirtel: Weekly Update, January 28, 2021

Link: https://wirtel.be/post/2021/01/28/2021-january-week-4-weekly-update/

Weekly Update Past Since January, I have no mission, no customers. There is some reasons. Where you work for a customer, it’s funny because you can learn a lof of technologies. But you don’t improve y
Python Pool: Matplotlib Annotate Explained with Examples

Link: https://www.pythonpool.com/matplotlib-annotate/?utm_source=rss&utm_medium=rss&utm_campaign=matplotlib-annotate

Hello geeks and welcome in this article, we will cover Matplotlib Annotate. Along with that, for an overall better understanding, we will also look at its syntax and parameter. Then we will see the ap
Matt Layman: Customer Feature - Building SaaS #89

Link: https://www.mattlayman.com/building-saas/customer-feature/

In this episode, I show you how to take a feature idea from nothing to something. We added new UI, wrote a new view, a new form, and all the associated test code to prove that the feature works.
My cu