Tuple is a collection which contains items that can be ordered and will allow duplicate items. Tuples can’t be changeable and it is written within round brackets. Example: This above example defines tuple named myFirstTuple. Accessing tuple items is similar to accessing list items using indexes. Example: Output: Since, Tuple is non-changeable, we can’t addContinue reading “Tuples”
Author Archives: Hepsi Paul
Data Type – List
List is a collection which contains objects or items that can be changed and ordered. Note: List can allow duplicate members. Below is the sample code which creates the list name “firstList” and displays the list. In Python, lists are written inside a square bracket. When we print the list, we get the below output:Continue reading “Data Type – List”
Complex Number
A Complex number is a combination of real number and an imaginary number. For example: 3 + 2i –> This is a complex number in which 3 is the real number and 2i is the imaginary number. i –> is the imaginary number that is imagined as the square root of -1 i.e., √-1. BelowContinue reading “Complex Number”
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”
Indentation in Python
Indentation plays a major role in Python. Let’s see with example. Here is a sample code of if block without space: This says to print “Hello from Python” whenever it executes and both the code statements are aligned to each other. The Python interpreter will not know that the print statement should be executed wheneverContinue reading “Indentation 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”
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”