1 day agoHighlighting Errors And Warnings In VS CodeWhile doing development, it is quite obvious that you will see some errors and warnings. …2 min read
2 days agoMultiple Ways To Get Current Working Directory In PythonIf you are a programmer, you must have come across a requirement wherein you need to access the current working directory. The current working directory is the folder where your application is running from. In this article, I’ll show you three different ways to get current working directory using Python. Using os.getcwd …Python1 min read
May 14Getting Started With Matplotlib Using PythonMatplotlib is a multi-platform library for data visualization built on top of NumPy arrays. It works very well with all the operating systems and supports many output types and backend systems. Before we begin with Matplotlib, we need to pull in the required package. Required Package We need to install matplotlib and…Python2 min read
May 11Extracting News From Google Using PythonThe situation, wherein you are running out of time but still do not want to miss your doze of daily news. Then this article is for you. When it comes to reading news, not everyone is interested in every topic. Few may be interested in sports, others may be interested…Python2 min read
May 3Getting Started With SQLite Database in PythonIn this article I’ll walk you through the process of using SQLite database, which is an in-built database for Python. …Python2 min read
Apr 26Screen Capture Using PythonNowadays, screen capturing is one of the common tasks which most of us are doing in our day-to-day routine and there are instances where in we need to automate this task. In this article, I’ll explain you about how can we automate screen capturing using Python. To get started, first…Python2 min read
Apr 25Automatically Renaming XML Tags In Visual Studio Code aka VS CodeIf you are working with XML tags and using Visual Studio Code, then you must have face an issue that whenever you are renaming stating or…Vscode Extension1 min readAutomatically Renaming XML Tags In Visual Studio Code aka VS Code----
Apr 15Effective ways to sort Python iterablesThe traditional way to sort iterables is by using loops, like for loop or while loop. As part of this article, I’m not going to cover this traditional way, rather I’ll be focusing on a better way to implement sorting. And that better way is by using sorted function. Let’s…Python1 min read
Apr 12Create Word Art From An Image Using PythonIf you are Python developer then you may be fully convinced that we can do very cool things using Python in very easy way. Today I’m going to show you a very beautiful usage of Python, in which we will see how we can generate a word art of any…Python2 min read
Mar 31Work From Home Hack To Keep Screen Active Till You WantIf your boss is very workaholic and you are not working from office then you must have heard one of these statements from your boss: Why were you not at your desk Why your status was away in Teams/Skype/etc I couldn’t see you really putting 8 hours at work, blah…Python2 min read