#3 - Which IDE? - Where to write our code?

Which IDE?




Now after we have installed python in our systems, we need to know that how can we code in python. For that, there should be a python file made in any of the folders and then we have to open the file in any IDE(Integrated development environment). Sounds confusing, right? But don't worry, everything will be easy very soon. First, let's understand what is an IDE.


What is an IDE?

An IDE(Integrated development environment) is simply software that you can use to edit a code file. Notepad can also be used as a code editor. But the best 2 IDEs for software development in python are Pycharm and Visual studio code. Pycharm is python specific but Visual studio is used for all languages and it is the most famous among all IDEs and is open-source software and offers you a great range of development tools. Here also you are suggested to go for Visual studio code as a beginner.


How to install Visual studio code?

To install VS code (visual studio code) is really a piece of cake as it can be simply downloaded and installed from the official website like any other software. The link to download it is there below. Remember to check "Add open with code action in windows explorer file context menu" and also check "Add to path".











https://code.visualstudio.com/download


Opening VS code in a specific folder

Open any random folder or maybe desktop only or anywhere you like and then right-click. You will see
an option called Open with Code. Click that and wait for Visual studio to get open on that location. You may don't see that option if you didn't click that "Add open with code action in windows explorer file context menu" while installing VS Code. Then you need to uninstall VS Code and then install it again and remember to click.
Now, when you have opened  VS Code on a specific folder, at left you can see all the files and folders present there in that folder. Now, take your time and try to understand the whole UI(User Interface) of VS code. Try opening different files in it and do random things to learn more and more about VS Code. Remember, not to open a terminal and running any command in it as it can damage your computer.


How to Open a python file?

Now, click a button () that you will find on the left-hand side. This will create a new file and you will have to give a name to it. Give a random name that you like but remember to add .py at the end to make it a python file. For example - "Myfile.py". Now when the file is made there, click to open that file, and here you will get a text editor in front of you where you have to write all the code which you will learn in this journey.

Can we use any other IDE?

Yes, of course, you can choose any IDE you like. You can go for other IDE's too like IDLEPycharmSpydereclipseJupyter, Jupyter notebook, sublime text etc.


What Excitement coming next?

Now, as we have done everything needed to write our first code, we will be moving to write. We are now going to learn the most important function in python.

Print Function

Comments

  1. Yaah, I also love Visual studio only!!!!

    ReplyDelete

Post a Comment

Popular posts from this blog

Comments

Dictionaries

#1- Let's Learn Python In the least possible time