Python – JSON

After reading this Python JSON topic, you will understand how to convert JSON to Python Object, Python Object to JSON String, theory, and examples in Python.

JSON stands for JavaScript Object Notation. JSON is a standard text used for exchanging data between server and client. Python has a built-in package named as json which support encoding and decoding of json using python.

Continue reading Python – JSON

Python – Objects and Classes

After reading this Python Objects and Classes topic, you will understand class, object, methods in object, changing object attributes, removing object attributes, and removing objects in Python.

A python is an object-oriented programming language in which everything considered as an object. An object having two parts as data and action. The data that object remembers and action that object can perform.

Continue reading Python – Objects and Classes

Python – Comments

After reading this Python comments topic, you will understand why we write comments and how to write comments on one line or on multi-line in Python.

Python comments are included by the user for some documentation or explanation. This Python comment is greatly useful to other users to understand the logic of the program. Python comments can be inserted either on one line or on multi-line and when user insert these comments will be ignored by Python interpreter.

Continue reading Python – Comments