Execute Python

Execute Python: Python codes can be executed in three ways: Script Mode: Writing Python code in a text editor and saving it with a .py extension. This file can then be executed in the Command Prompt. Interactive Mode: Writing Python code in a Python interactive shell. This method is useful for immediate testing of code … Read more

Python Example

Writing python codes can be done in two ways: Writing Python code in a text editor and saving it with a .py extension. These file can then be executed. Writing Python code in a Python interactive shell. This method is useful for immediate testing of code with no stress of writing and saving the code … Read more

Python Path

Python Path: Python is a programming language created by Guido van Rossum for web development, software development, mathematics operations and system scripting. Setting a specific path for python means to provide the Operating System a direction to search the executable code from the list of directories available in the Operating System. It is the first … Read more

python command not found

In previous topic we have tried few bash commands, some times you may get “command not found error”. Here we will discuss how to troubleshoot this problem. This error may cause because you might have not selected ADD TO PATH option during installation To troubleshoot this issue you need to check the system variables path … Read more

python command line

In this tutorial, you will learn how to use command line. How you can create, copy, move files and folder from one location to another location using terminal. Open your vscode and press “cntrl+~ “key to enter into terminal. This terminal is a git bash that we have integrated with vscode. You can test these … Read more

python integration with git

As we have installed download git-bash, vscode and python. Now its time to integrate python git-bash with vscode. Open the vscode Click on extensions icon and type python in search box and select very first option of python which is recommended by Microsoft select and click on install button.

python 3 vs python 2 differences

If you are new to Python, you might be confused about the different versions that are available. Although Python 3 is the latest generation of the language, many programmers still use Python 2.7, the final update to Python 2, which was released in 2010.In this course, we will be working on python 3. Why we … Read more

How to install python?

Python doesn’t come prepackaged with Windows, but this doesn’t means that Windows users won’t find the flexible programming language useful. It’s not quite as simple as installing the newest version. So let’s make sure that you get the right tools for the task in hand.   Here we’ll learn how to install python, git, vscode? … Read more