Features of Python Programming Language

As being programmer we always play with the programming languages.To work with any programming language we need to know the thatcher are available in a particular programming language.In this below post we will discuss the features of that language.In this Features of Python Programming Language post we will discuss in details . Simple If we […]

How to Handle XML Files in Python

Introduction   Xml (eXtensible Markup Language) is a markup language. XML is designed to store and transport data. Xml was released in late 90’s. it was created to provide an easy to use and store self-describing data. XML became a W3C Recommendation on February 10, 1998. XML is not a replacement for HTML. XML is […]

Looping in Python

Single Statement Suites If the suite of an if clause consists only of a single line, it may go on the same line as the header statement. Here is an example of a one-line if clause − Live Demo #!/usr/bin/python var = 100 if ( var == 100 ) : print “Value of expression is […]

Python Variable Declaration Rules and Syntax

Variable and Value A variable is a memory location where a programmer can store a value. Example : roll_no, amount, name etc. Value is either string, numeric etc. Example : “Sara”, 120, 25.36 Variables are created when first assigned. Variables must be assigned before being referenced. The value stored in a variable can be accessed […]

Python String Functions

In this below post we will go through the Python String Functions and their their uses. Strings operation and manipulation is very easy in the python . We can create them simply by enclosing characters in quotes. Python treats single quotes the same as double quotes. Creating strings is as simple as assigning a value […]

History of Python Comedy, Snake or Programming Language

History of Python Easy as ABC What do the alphabet and the programming language Python have in common? Right, both start with ABC. If we are talking about ABC in the Python context, it’s clear that the programming language ABC is meant. ABC is a general-purpose programming language and programming environment, which had been developed […]

Features of Python Programming Language

Features of Python Programming Language that are listed below. 1) Easy to Learn and Use Python is easy to learn and use. It is developer-friendly and high level programming language.With minimal syntax and easy to remember keyword makes its special from any  other language. 2) Expressive Language Python language is more expressive means that it […]