Python Tutorial
Python Comments
Python supports two types of comments: 1) Single lined comment: In case user wants to specify a single line comment, then comment must start with…
Python Operators
Operators are particular symbols which operate on some values and produce an output. The values are known as Operands. Eg: 4 + 5 = 9 Here 4 and 5…
Python Literals
Literals can be defined as a data that is given in a variable or constant. Python support the following literals: I. String literals: String literals…
Python Identifiers
Identifiers are the names given to the fundamental building blocks in a program. These can be variables ,class ,object ,functions , lists , dictionaries etc….
Python Keywords
Keywords are special reserved words which convey a special meaning to the compiler/interpreter. Each keyword have a special meaning and a specific operation. List of…
Python Variables
Variable is a name of the memory location where data is stored. Once a variable is stored that means a space is allocated in memory….
Execute Python
here are three different ways of working in Python: 1) Interactive Mode: You can enter python in the command prompt and start working with Python….
Python Example
Python code is simple and easy to run. Here is a simple Python code that will print “Welcome to Python”. A simple python example is…
Python Path
Before starting working with Python, a specific path is to set. Your Python program and executable code can reside in any directory of your system,…
Python Install
1. To install Python, firstly download the Python distribution from www.python.org/download. 2. Having downloaded the Python distribution now execute it. Double click on the downloaded…