ImportError Attempted Relative Import With No Known Parent Package (Python)

Have you ever tried to import something into Python only to get an error message saying that there was no known parent package? This happens to me all the time!In this article I’m going to explain you how to fix this problem.Thesis/Solution I’ll explain you how to solve this problem using relative imports.

JSON Object vs. JSON Array Explained With Python

How would you like to learn something new today?In this tutorial I’m going to explain you how to parse JSON data using python.1 This tutorial explains you how to read JSON data in python.1: rQw4KZN0h8g&list=PLxqj_cL5RXGk3PVHJ2Ezf6S What is the difference between JSON Object and JSON Array? JSON stands for JavaScript Object Notation. It is a lightweight…

How to Solve SyntaxError Invalid Character in Identifier (Python)?

Have you ever encountered an error message like this?SyntaxError: invalid character in identifier This happens because there’s something wrong with the code. In this case, the problem is that there’s an extra space at the end of the line.In this tutorial, I’m going to explain you how to solve this issue in Python. Understand SyntaxError:…