ItsMyCode: [Solved] AttributeError: ‘str’ object has no attribute...
The AttributeError: ‘str’ object has no attribute ‘get’ mainly occurs when you try to call the get() method on the string data type. The attribute get() method is present in the dictionary and must be...
View ArticleItsMyCode: [Solved] AttributeError: ‘NoneType’ object has no...
The AttributeError: ‘NoneType’ object has no attribute ‘get’ mainly occurs when you try to call the get() method on the None value. The attribute get() method is present in the dictionary and must be...
View ArticleItsMyCode: [Solved] AttributeError: ‘tuple’ object has no...
The AttributeError: ‘tuple’ object has no attribute ‘get’ mainly occurs when you try to call the get() method on the tuple value. The attribute get() method is present in the dictionary and must be...
View ArticleMatt Layman: Refactoring and New Features - Building SaaS with Python and...
In this episode, I continued on the teacher checklist for the homeschooling app. We added data to the context and this required some refactoring to be able to reuse data from other parts of the app.
View ArticlePyCharm
On Tuesday, June 21, 2022, Matt Harrison joined Jodie Burchell for a webinar about Pandas, and how to be more effective while working with this popular library. Here’s the recording for you to watch if...
View ArticleMike Driscoll: An Intro to Kivy Layouts (Video)
Learn how to layout your widgets in Kivy, a mobile GUI framework for Python. Kivy is a cross-platform GUI framework that also works on iOS and Android.The examples in this video are based on the code...
View ArticlePyBites: Common Python developer pitfalls and the 80/20 that really matters
Listen here:Welcome back to another Pybites podcast episode. In this episode we talk about common pitfalls you want to avoid when becoming a Python developer:Pitfall #1: Tutorial paralysisPitfall #2:...
View ArticleReal Python: The Real Python Podcast – Episode #115: Digging Into PyScript...
Have you heard about PyScript? The brand-new framework has the community excited about building interactive Python applications that run entirely within the user's browser. Would you like to dig into...
View ArticleZero to Mastery: Python Monthly Newsletter 💻🐍
31st issue of the Python Monthly Newsletter! Read by 25,000+ Python developers every month. This monthly Python newsletter covers the latest Python news so that you stay up-to-date with the industry...
View ArticleRobin Wilson: Update: recent work, conference talks and 3D printers
It’s been just over a year since I last posted here – and it’s been a busy year.I’m aiming to start posting a bit more frequently (though I’ve said that before…), so I thought I’d start with an update...
View ArticleMike Driscoll: Using Python to Turn Text-to-Speech on Mac OSX (Video)
Learn how to turn text into speech on Mac OSX with the Python programming languageThe post Using Python to Turn Text-to-Speech on Mac OSX (Video) appeared first on Mouse Vs Python.
View ArticleDjango Weblog: PyCharm & DSF Campaign 2022 Results
The sixth annual JetBrains PyCharm promotion in June netted the Django Software Foundation $25,000 this year.This amount represents over 10% of the DSF's overall budget, which goes directly into...
View ArticlePython for Beginners: List of Dictionaries to Dataframe in Python
Dataframes are mainly used in python for the analysis of tabular data. In this article, we will discuss how we can convert a list of dictionaries to a dataframe in python.List of Dictionaries to...
View ArticleItsMyCode: [Solved] AttributeError: module ‘time’ has no...
The time.clock() method has been removed in Python 3.8 onwards. Hence if you are using the clock() method in Python 3.8 or above, you will get AttributeError: module ‘time’ has no attribute ‘clock’....
View ArticlePodcast.__init__: Design Real-World Objects In Python With CadQuery
Virtually everything that you interact with on a daily basis and many other things that make modern life possible were designed and modeled in software called CAD or Computer-Aided Design. These...
View ArticlePython Software Foundation: The PSF Board Election is Open!
It’s time to cast your vote! Voting takes place from Monday, June 20 AoE, through Thursday, June 30, 2022 AoE. Check here to see how much time you have left to vote. If you are a voting member of the...
View ArticleMike Driscoll: PyDev of the Week: Luiz Gustavo Martins
This week we welcome Luiz Gustavo Martins (@gusthema) as our PyDev of the Week! Luiz has been posting a lot of Python content on Twitter lately, so if you like to learn Python or machine learning, you...
View ArticlePython for Beginners: Insert New Column Into a Dataframe in Python
Dataframes are often used to handle tabular data in python. In this article, we will discuss how we can insert a new column into a dataframe in python.Insert New Column Into a Dataframe by Indexing in...
View ArticleReal Python: Build a Tic-Tac-Toe Game With Python and Tkinter
Playing computer games is a great way to unwind or challenge yourself. Some people even do it professionally. It’s also fun and educational to build your own computer games. In this tutorial, you’ll...
View Article