News

This extension is inspired by "Python Quick Print". "Python Quick Print" can quickly print out variables like print(f"==>> a: {a}") on the terminal by using keyboard shortcut Ctrl+Shift+L, while this ...
Of course, you would usually store the pretty JSON elsewhere rather than print the data to the Terminal. Even so, there’s a one-line snippet you can use to pretty print a JSON file from the command ...
Let’s wise up👓 the day by discussing __init__, self, and types of variables in Python OOP. Read this with care as these topics are as important to OOP as food😋 is to a restaurant. Here’s the code of ...
In Python, variables are simply declared as soon as they are named. Unlike JavaScript where const or let are used to first declare the variable, Python does not need anything like this. You simply ...
Now, I won’t bore😪 you by saying that with this you can use a variable anywhere in the middle of the string and also at the end and that we can use more than one variable and more than one string. I ...
In this article, I'll be exploring the basics of Python, i.e. variables, input and output. You'll need Python (2.7+), a computer, and some free time. Variables Simply put, variables are like ...