object – POFTUT

Php – Class

[rps-include post=6522] Php programming language supports most of the Object Oriented Programming concepts. Object Oriented Programming provides a lot of useful features to manage big and enterprise applications. Object Oriented Programming Object Oriented Programming or OOP is a concept that provides different features to implement real world problems. Up to now we have used variables … Read more

Python Type Function with Examples

Python provides a lot of different types for programming purposes. While using these structs we may need to decide which variable or identifier is which type. Python provides builtin type function in order to decide given identifier types. We just need to provide the identifier to the type function. Identify Type We will provide our identifier or … Read more

Python Class Tutorial with Examples

Class is a popular paradigm used in programming language.  Object oriented programming is created the class structures in order to work programming structures like a real world objects. Class and object words are used to express similar things. Object Class defines the data types, functions, behaviours but do not holds any data or mostly can … Read more

Python JSON Encoder and Decoder Tutorial with Examples

JSON or Javascript Object Notations is a RFC standard which is used to define complex data types with number 7159.  JSON became very popular in recent years because of its compatibility and simplicity. Python have rich support web applications and popular framework Django is developed with python too. So we generally need to use JSON with … Read more