Planet Python RSS
214 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
ItsMyCode: [Solved] Python can’t Multiply Sequence by non-int of type ‘float’

Link: https://itsmycode.com/solved-python-cant-multiply-sequence-by-non-int-of-type-float/

ItsMyCode |
The TypeError: can’t multiply sequence by non-int of type ‘float’ occurs if we use the multiply operator between a string and float value. 
In this tutorial, we will learn what exactly Typ
ItsMyCode: No handles with labels found to put in legend

Link: https://itsmycode.com/no-handles-with-labels-found-to-put-in-legend/

ItsMyCode |
In Python matplotlib No handles with labels found to put in legend occur if you have not defined the label parameters whenever you plot the figure and try to call the plt.legend() method.
ItsMyCode: ValueError: If using all scalar values, you must pass an index

Link: https://itsmycode.com/valueerror-if-using-all-scalar-values-you-must-pass-an-index/

ItsMyCode |
If you pass all scalar values while creating pandas Dataframe in Python, you will encounter “ValueError: If using all scalar values, you must pass an index“
In this tutorial, we will learn
ItsMyCode: [Solved] NameError: name ‘np’ is not defined

Link: https://itsmycode.com/solved-nameerror-name-np-is-not-defined/

ItsMyCode |
In Python,  NameError: name ‘np’ is not defined occurs when you import the NumPy library but fail to provide the alias as np while importing it.
In this article, let us look at what is Na
ItsMyCode: [Solved] NameError: name ‘pd’ is not defined

Link: https://itsmycode.com/solved-nameerror-name-pd-is-not-defined/

ItsMyCode |
In Python,  NameError: name ‘pd’ is not defined occurs when you import the pandas library but fail to provide the alias as pd while importing it.
In this article, let us look at what is N
Armin Ronacher: Dependency Risk and Funding

Link: http://lucumr.pocoo.org/2022/1/10/dependency-risk-and-funding

I have a love/hate relationship with dependencies. I wrote about this
extensively on this blog. Once about the challenges with scaling trust
in dependencies and earlier about the
problem with micro
ItsMyCode: How to Fix: KeyError in Pandas?

Link: https://itsmycode.com/how-to-fix-keyerror-in-pandas/

ItsMyCode |
The KeyError in Padas occurs when you try to access the columns in pandas DataFrame, which does not exist, or you misspell them. 
Typically, we import data from the excel name, which impor
Zato Blog: API development workflow with Zato

Link: https://zato.io/blog/posts/zato-dev-workflow.html

Zato is an integration platform and backend application server which means that, during most of their
projects, developers using Zato are interested in a few specific matters.
The platform concentrate
Mike Driscoll: PyDev of the Week: Lais Carvalho

Link: https://www.blog.pythonlibrary.org/2022/01/10/pydev-of-the-week-lais-carvalho/

This week we welcome Lais Carvalho (@lais_bsc) as our PyDev of the Week! Lais is active in multiple Python user groups in Ireland and has helped organize multiple Python conferences. She is on a recen
ItsMyCode: How to Fix in Python ValueError: Trailing data?

Link: https://itsmycode.com/how-to-fix-in-python-valueerror-trailing-data/

ItsMyCode |
In Python ValueError: Trailing data occurs when you try to load the JSON data or file into pandas DataFrame, and the data is written in lines separated with newline characters such as ‘\n’
Real Python: Build and Handle POST Requests in Django – Part 3

Link: https://realpython.com/django-social-post-3/

In this four-part tutorial series, you’re building a social network with Django that you can showcase in your portfolio. This project is strengthening and demonstrating your understanding of relations
IslandT: How to write a Python calculator interface program

Link: https://islandtropicaman.com/wp/2022/01/08/how-to-write-a-python-calculator-interface-program/

In this article, let us write a Python calculator program with the help of the Tkinter module which comes together with the latest version of Python. This program will support any version of Python 3.
David Amos: 5 Ways To Use Python On An iPad

Link: https://davidamos.dev/5-ways-to-use-python-on-an-ipad/

When Apple released the M1 iPad Pros in March of 2021, I traded in my MacBook Pro to get the latest tablet. I’d already been using a mac Mini as my daily workhorse, so I wasn’t concerned about my day-
Matt Layman: Most Abstract Function First Is Better

Link: https://www.mattlayman.com/blog/2022/most-abstract-function-first-better/

Python is one of many languages that will let you define your module’s functions in whatever order you want. If your language of choice allows functions to be order independent, what order should you