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 […]

Difference Between JSON vs XML,How to use in the Programming Language.

The JSON vs XML,And basically used in the Programming Language because of simplicity and structured data format.Basically JSON and XML format is useful in sending data over network between different web services because of its simplicity in representation of data. Those who are the new to these format they can try  for the xml because […]

Python Exceptions Handling

Python provides two very important features to handle any unexpected error in your Python programs and to add debugging capabilities in them − Exception Handling: This would be covered in this tutorial. Here is a list standard Exceptions available in Python: Standard Exceptions. Assertions: This would be covered in Assertions in Python tutorial. List of Standard Exceptions − EXCEPTION NAME […]

Python Strings

Strings are amongst the most popular types in 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 to a variable. For example − var1 = ‘Hello World!’ var2 = “Python Programming” Accessing Values in Strings […]

Python pass Statement and Uses In The Coding to Write No Statement

In Python pass Statement and Uses In The Coding to Write No Statement when need to implement a blank block and/or a blank loop.It is used when a statement is required syntactically but you do not want any command or code to execute. The pass statement is a null operation; nothing happens when it executes. The pass is also useful in […]

Python Basic Free Course For Selenium

This course designed by keeping eyes to the armature and experienced programmer those heaving prior experience in programing they can also grab this topic as well as the armature will find very easy syntax and due to high label in nature.      1.Syntax Python programs can be written using any text editor and should have […]

Data types in Python or Different Types of Objects in Python

Every language has its own data types and data structures. Depending upon the data when we create a variable that is known as static typing.Where we can not able to store any other types of data into the variable.But pyhton not operate the same way.It has the concept of dynamic typing where the data can […]

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 […]