List list(seq) Function

In Python list list(seq) function takes types of the sequence and converts them to lists. Simply used to convert tuple into list. Syntax: There is 1 Parameter used in Lists list(seq) Function: seq A tuple to be converted into the list. Example:

GUI-Geometry Management

In Python, Tkinter widgets allow access to specific GUI-geometry management methods. These geometry management methods used to organize widgets throughout the parent widget area. Widgets can be arranged by determining the size and position of components. The geometry managers always set the positioning and sizing. There are 3 main GUI-Geometry Management given below: The pack( … Read more

Python XML Processing

Python XML Processing is another advanced python processing. XML Extensible Markup Language is a markup language that allows developers to develop applications that can be read by other applications. XML is a portable, open-source language. It encodes documents by defining a set of rules in both machine-readable and human-readable format. Extended from SGML Standard Generalized … Read more

Python DataBase Access

The database is a collection of tables related to each other via columns. For most real-world projects, a database is very important. To create, access, and manipulate data we can use SQL (Structured Query Language).To avoid redundancy of data we can also use normalization. For Python database Access programming, Python supports many database servers such … Read more

Python Network Programming

In Python Network Programming there are two levels of access to network services. Low level access and High level access. At a low level, the basic socket support can be accessed in the underlying operating system. It allows you to implement clients and servers for both connection-oriented and connectionless protocols. Higher level libraries provide access … Read more

Python Sending E-mail

In python sending e-mail can be done by using a protocol named Simple Mail Transfer Protocol (SMTP), which handles sending e-mail and routing e-mail between mail servers. Python provides another module called smtplib module, which defines an SMTP client session object that can be used to send mail to any Internet machine with an SMTP or ESMTP … Read more

Python Multithreaded Programming

Before going to Python Multithreaded Programming, let’s understand what is the thread? A thread is an entity within a process that can be scheduled for execution. It’s the smallest unit of processing that can be performed in an Operating System. A thread can be defined as a sequence of such instructions within a program that can be executed independently … Read more

Python Extension Programming

In Python script sometimes if there is any code written using compiled languages such as C, C++, or java, is known as Extension. A Python Extension programming Module is known as a normal C library. To Create Python Extension Programming, code should be grouped in 4 main parts: First is the Header file of extension … Read more

Python CGI Programming

Python CGI Programming is a Common Gateway Interface that has specifications (set of rules) that helps to establish a dynamic interaction between a web application and the browser (or the client application). The CGI programs make possible communication between clients and web servers. Whenever the client browser sends a request to the webserver the CGI … Read more

Python Object-Oriented

Python is also known as a high-level programming language with a multi-paradigm, one of those paradigms is Python Object-Oriented Programming. Object-oriented programming is a programming technique that most high-level programming languages support. In this class and objects are used to make a program. Here are some terminologies which are used in Python object-oriented programing described below, … Read more