Python Keywords
Python Keywords Keywords or Reserved words, which carries its own functionality in python. We should not use these keywords as …
Read MoreIdentifiers in Python
Identifiers in Python 1. Identifiers are called set of protocol to be followed while deriving any functionality in python on …
Read MorePython Data Types
Python Data Types Data types are used to define the type of the variable. We do not need to declare …
Read MorePython History
Python History Python is a beginner’s language. Python is an Open source an Object-oriented program. Python is readable programming language …
Read MoreInstall Python 3.7 on Ubuntu
Install Python 3.7 on Ubuntu We can install python on ubuntu using a standard apt tool from deadsnakes PPA. Step …
Read MorePython Classes and Objects
Python Classes and Objects Python is a high-level objected oriented programming language meaning that most of the code in Python …
Read MorePython Input and Output
Python Input and Output version2 Some of the functions like input() and print() are widely used for standard input and …
Read MorePython Dictionary
What is a Dictionary in Python? A dictionary is an unordered set or collection of items or objects where unique …
Read MorePython Iteration Statements
Python Iteration Statements Iteration: Iteration repeats the execution of a sequence of code. Iteration is useful for solving many programming …
Read MorePython Operator
Python Operators Operators are inbuilt methodology to execute certain manipulation with the given data or operand. Operand is a Variables …
Read MorePython Tuples
Python Tuples What is a Tuple in Python? A tuple is a collection of Python objects that are ordered and …
Read MorePython Variables
Python Variables 1. Variables are named location to store a data in a memory location Note: “Dhoni” is the data …
Read More