Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Frank Wierzbicki: Jython 2.7.2 final released!

Link: http://fwierzbicki.blogspot.com/2020/03/jython-272-final-released.html

Jeff Allen's Jython 2.7.2 release announcement:On behalf of the Jython development team, I am pleased to announce thatJython 2.7.2 has been released.Notable additions include:  * much improved support
"Coder's Cat": Python: Generator and Yield

Link: https://coderscat.com/python-generator-and-yield




In this post, let’s discuss some basics for the generator in Python. What’s the benefit for generator, and how we use yield to implement generator.

Iterables

First, we must understand what’s
Matt Layman: Starting the Onboarding Flow - Building SaaS #49

Link: https://www.mattlayman.com/building-saas/starting-onboarding-flow/

In this episode, we worked on the progress element that will display in every step of the onboarding flow. I added some labels and styled the banner using Tailwind CSS. At the end of the stream, we bo
PyCharm: Webinar Recording: “Django with PyCharm Tips and Tricks” with Paul Everitt

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

Yesterday we hosted a webinar showing some of PyCharm’s Django-specific features for speeding Django development. The recording is now available:

Contents
This webinar covered 20 tips and tricks for
PyCharm: PyCharm 2020.1 Beta 2

Link: http://feedproxy.google.com/~r/Pycharm/~3/x-zf6RxMveQ/

PyCharm is approaching its release, and this beta is yet another waypoint we’re passing. The new Beta version of PyCharm can now be downloaded from our website.
Improved in PyCharm

We’ve improved our
Zero-with-Dot (Oleg Żero): Hidden Markov Model - Implemented from scratch

Link: https://zerowithdot.com/hidden-markov-model/

Introduction
The Internet is full of good articles that explain the theory behind the Hidden Markov Model (HMM) well
(e.g.
1,
2,
3
and
4)
.
However, many of these works contain a fair amount of rather
Ned Batchelder: How long did it take you to learn Python?

Link: https://nedbatchelder.com//blog/202003/how_long_did_it_take_you_to_learn_python.html

Wait, don’t answer that. It doesn’t matter.Beginners seem to ask this question when they are feeling daunted by the
challenge before them. Maybe they are hoping for a helpful answer, but it seems
lik
Codementor: What is Data Science?

Link: https://www.codementor.io/dimensionlessmarketing/what-is-data-science-14xuwo1j6r

The demand for data scientists is increasing in the market and people are just flocking into the field.
"Coder's Cat": Python: Is and ==

Link: https://coderscat.com/python-is-and-equal



Figure 1: Photo by Rajiv Perera on Unsplash


== is comparing values

In Python, == compares the value of two variables and returns True as long as the values are equal.

>>> a = "hello cat"
>>>