Python: Catch All Errors

In this article, we’ll study how to catch all errors in Python. Additionally, we will also learn how to catch just a single error. To make us understand better, we’ll also take a look at the exception hierarchy. Without further ado, let’s begin! Catching all errors using “except:” If you’re looking to catch all errors … Read more

Python PermissionError: What is it?

In this article, we’ll take a look at PermissionError in Python. We will understand what it is and what causes it. Let’s begin! What is PermissionError?  PermissionError is simply an Exception that is raised when you try to do an operation in Python but you can’t because you do not have sufficient permissions. From the … Read more

Python ModuleNotFoundError But Module Is Installed

In this article, we will see how to solve the error ModuleNotFoundError even if you have installed the module There are several reasons why this may happen, let’s look at each one of them below. Reason#1: Module Name is Incorrect The Python modules are usually acronyms or code names or shortened versions of their full … Read more

Can Python be used for Android app development

In this article, we will see if Python can be used to develop Android applications. We will see the advantages and disadvantages of doing this. Is it “Possible” to make an Android app with Python? Yes, it is possible to make an Android application using pure Python language. Even though Android doesn’t support native Python … Read more

2 Best Python Frameworks for building Android apps

In this article, we will look at the best frameworks to get started with Android application development using Python. Kivy Kivy is an open-source library for Python used for the development of cross-platform GUI applications.  This allows you to write pure Python graphical applications that can run on all the main desktop platforms like Windows, … Read more

Is Python A Good Option for Android App Development?

In this article, we’ll understand if Python is a good option to develop Android applications. In particular, we will look at the advantages and disadvantages of building Android applications via Python and see We will also go through some popular use cases of Python. Without further ado, let’s begin! Good scenarios to use Python To … Read more

Python MemoryError: What is it?

In this article, let us learn about Python’s MemoryError exception. In particular, we will try to answer the following 2 questions Without further ado, let’s begin! Understanding MemoryError MemoryError is simply an exception raised when you run out of RAM to allocate to your program. This is when the space allocated for your code in … Read more