Posts

The difference between IDE and Text Editors…

Image
Welcome guys to another freaking awesome blog. Today we will be going in the actual difference between an IDE and a Text Editor. But before that let’s see why they are used. IDE’s and Text Editors are generally used for writing code in a nice and clean way. They enhance the productivity of the user and enables the user to perform some actions on their code. Difference: IDE : IDE stands for “Integrated development environment” not just a tool where you write the code, but you can also compile it and debug it. IDEs usually combine code editors, debuggers, and built-in tools for compiling and running applications. An IDE is generally developed for a specific language. They are considered to be heavy than Text Editors as they come up with some built-in tools and plugins for that specific language. If an IDE is developed for a specific sector then you can’t use it for another totally different sector.  Examples of IDEs are  Visual Studio  for  ASP.NET  appl...

How to install python for windows...

Image
Hi guys, in this blog we are gonna see how to install python on windows perfectly. In a future blog, we will take a brief but simple tour of python basics where you will learn all basics of python within a couple of days. Step 1: Go to official website of python and download python 3 version. You can download python 2 but my suggestion to you is to download Python 3. The link is : https://www.python.org/downloads/ Step 2: After downloading the setup, you have to run the setup like any other setup but one thing that you have to make sure that you need to check "add to path option". If you are thinking why is this then it will get clear in my next python tutorial blog. Step 3: Now after completing the whole installation process, you should be good to go now. If you want to check is python is installed correctly or not then open CMD(command prompt) and type "python" and hit enter. If you don't see an error then it is done. What should you see in CM...