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”
Tag Archives: pycharm
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”
Hello World from Python
Create Project via PyCharm Open PyCharm and click on “Click New Project“ Specify the location of the project. Click on “Project Interpreter” settings, it will automatically populate the values of the interpreter and then click “Create“. The project will be created as shown. Once the project is created, right click on the project name, selectContinue reading “Hello World from Python”
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”
Start with Python
First step to start learning Python is to install python. Go to the site ” https://www.python.org/” and click on “Downloads” -> “All releases” The latest version of python is 3.8.1 when writing this. It downloads the exe file as shown below. Double click on python-3.8.1.exe to run the file. It will open an installation window.Continue reading “Start with Python”