Pradeep Elance has Published 498 Articles

XML Processing Modules in Python

Pradeep Elance

Pradeep Elance

Updated on 25-Jan-2021 07:51:34

XML stands for "Extensible Markup Language". It is mainly used in webpages, where the data has a specific structure. It has elements, defined by a beginning and an ending tag. A tag is a markup construct that begins with < and ends with >. The characters between the start-tag and ... Read More

XMLRPC server and client modules in Python

Pradeep Elance

Pradeep Elance

Updated on 25-Jan-2021 07:51:19

We can create our own cross-platform, language-independent server using the XML-RPC protocol.We use the SimpleXMLRPCServer to create the SimpleXMLRPCServer instance and tell it to listen for incoming requests. Next we define some functions to be part of the service and register those functions so that the server knows how to ... Read More

The Null Object in Python

Pradeep Elance

Pradeep Elance

Updated on 25-Jan-2021 07:46:49

Python does not have a null object. But the most closely related similar object is none. In this article, we will see how how None behaves in Python.Checking the type of Null and None we see that there is no Null Type and the None object is of type NoneType.Exampleprint(type(None)) ... Read More

Python Type Object

Pradeep Elance

Pradeep Elance

Updated on 25-Jan-2021 07:44:57

Everything in Python is an object including classes. All classes are instances of a class called "type".The type object is also an instance of type class. You can inspect the inheritance hierarchy of class by examining the __bases__ attribute of a class object. type() method returns class type of the ... Read More

Python Docstrings

Pradeep Elance

Pradeep Elance

Updated on 25-Jan-2021 07:41:37

We can comment the code in a python program to understand parts of the code. But to search for the comments and different parts of the comment we need to use the search(CTL+F) and we scroll through many lines. Also we have not the immediate way of knowing a given ... Read More

Python Code Objects

Pradeep Elance

Pradeep Elance

Updated on 25-Jan-2021 07:40:16

Code objects are a low-level detail of the CPython implementation. Each one represents a chunk of executable code that hasn’t yet been bound into a function. Though code objects represent some piece of executable code, they are not, by themselves, directly callable. To execute a code object, you must use ... Read More

Python a += b is not always a = a + b

Pradeep Elance

Pradeep Elance

Updated on 25-Jan-2021 07:38:35

If two variables are of the same data types and not iterators like list and dictionary etc, then the expressions a += b is same as a =+b gives the same result. But when n iterator is involved we can not always expect the same. Below is one of such ... Read More

Python __import__() function

Pradeep Elance

Pradeep Elance

Updated on 25-Jan-2021 07:35:37

As we write python programs we need various other modules to leverage their functions, classes etc. in our current program. We can import those modules at the runtime using the import function. Though you can also import named modules at the beginning of the code, you may need the module ... Read More

Python - Drawing different shapes on PyGame window

Pradeep Elance

Pradeep Elance

Updated on 25-Jan-2021 07:34:34

Pygame is a multimedia library for Python for making games and multimedia applications. In this article we will see how to use the pygame module to draws many different shapes on the screen taking into consideration, its height, width and position in the pygame window.In the below program we initialize ... Read More

Python - Display text to PyGame window

Pradeep Elance

Pradeep Elance

Updated on 25-Jan-2021 07:34:15

Pygame is a multimedia library for Python for making games and multimedia applications. In this article we will see how to use the pygame module to get customized font and text on the screen taking into consideration, its height, width, and position in the pygame window.In the below program we ... Read More

1 2 3 4 5 ... 50 Next
Advertisements