Planet Python RSS
214 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Test and Code: 150: A Practical Testing Strategy

Link: https://testandcode.com/150

Coming up with a testing strategy doesn't have to be stressful. Prioritizing features to test, and generating test cases for each feature can be fairly quick and painless. This episode covers a strate
Programiz: Python Program to Check if a Key is Already Present in a Dictionary

Link: https://www.programiz.com/python-programming/examples/key-in-dictionary

In this example, you will learn to check if a key is present in a dictionary.
Stack Abuse: Radix Sort in Python

Link: https://stackabuse.com/radix-sort-in-python/

Introduction to Radix Sort
The radix (or base) is the number of digits used to represent numbers in a positional numeral system. For the binary system, the radix is 2 (it uses only two digits - 0 and
Python for Beginners: Iterating over dictionary in Python

Link: https://www.pythonforbeginners.com/dictionary/iterating-over-dictionary-in-python


Dictionaries are one of the most frequently used data structures in python. It contains data in the form of key value pairs. While processing the data with dictionaries, we may need to iterate over t
PyCharm: PyCharm Supports Django – you can too!

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


For those developers, whose daily work benefits from the Django framework.



As you probably know, the Django framework is built and maintained by community members. This might give you the impressi
John Ludhi/nbshare.io: How To Code RNN and LSTM Neural Networks in Python

Link: https://www.nbshare.io/notebook/249468051/How-To-Code-RNN-and-LSTM-Neural-Networks-in-Python/








How To Code RNN And LSTM Neural Networks In Python





In [1]:


import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import tensorflow as tf
from tensorflow import keras
fro
Programiz: Python Program to Count the Occurrence of an Item in a List

Link: https://www.programiz.com/python-programming/examples/occurrence-of-item

In this example, you will learn to count the occurrence of an item in a list.
Real Python: The Real Python Podcast – Episode #56: OrderedDict vs dict and Object Oriented Programming in Python vs Java

Link: https://realpython.com/podcasts/rpp/56/

Are you looking for a bit of order when working with dictionaries in Python? Are you aware that the Python dict has changed over the last several versions and now keeps items in order? Could you learn