Create First Project in Visual Studio

Open Visual studio and create a new Project. Search for Python in the templates. Select Python web project and click on “Next“. Then, click “Create“ This creates a new Python project and can be viewed under “Solution Explorer“. Let’s install a python library called Flask. Expand Python Environments, you should be able to see theContinue reading “Create First Project in Visual Studio”

Data Types

Datatypes are common concepts across every language. The data that is stored in a variable determines the data types. For Example: a variable that stores a text has string as a data type, similarly, variable storing number has int, float or complex as data type depending on the complexity of the number. Let’s understand fewContinue reading “Data Types”

Comments in Python

Comments are statements that is written inside a code which is used mostly for adding the note about the code. Comments doesn’t gets executed. It is basically ignored by the compiler. Comments are added to increase the code readability and maintainability. There are specific syntax that needs to be followed to write comments. Single lineContinue reading “Comments in Python”

Variables in Python

Variable creation in Python is very much similar to the other programming languages. However, there are few notable differences. Variables are created only when it is assigned with a value. There is no concept of declaration. Variables type are determined only when it is assigned with a value. Type is optional while creating variables.  TypesContinue reading “Variables in Python”

Python via Visual Studio Code

Visual studio code is free and available for all type of Operating System. First step would be to install visual studio code. Download visual studio code from the link below and click on the corresponding button based on your Operating System. https://code.visualstudio.com/download I am downloading the windows installer. An .exe file like shown below willContinue reading “Python via Visual Studio Code”

Install Pycharm

Pycharm can be downloaded from here. https://www.jetbrains.com/pycharm/download/#section=windows We have two variations of “Pycharm” available for download. Professional version – Which supports web development with HTML , JS and SQL support, which is available as free trial and have to upgrade after the free trial period expires. Community version – Which supports only pure python developmentContinue reading “Install Pycharm”

Design a site like this with WordPress.com
Get started