The Python standard for database interfaces is the Python DB-API. Most Python database interfaces adhere to this standard. You... 04 Mar Python – MySQL Database Access | Python | 0 The Python standard for database interfaces is the Python DB-API. Most Python database interfaces adhere to this standard. You...
Python provides two levels of access to network services. At a low level, you can access the basic socket... 04 Mar Python – Network Programming | Python | 0 Python provides two levels of access to network services. At a low level, you can access the basic socket...
Simple Mail Transfer Protocol (SMTP) is a protocol, which handles sending e-mail and routing e-mail between mail servers. Python... 04 Mar Python – Sending Email using SMTP | Python | 0 Simple Mail Transfer Protocol (SMTP) is a protocol, which handles sending e-mail and routing e-mail between mail servers. Python...
This chapter covers all the basic I/O functions available in Python. For more functions, please refer to standard Python... 04 Mar Python – Files I/O | Python | 0 This chapter covers all the basic I/O functions available in Python. For more functions, please refer to standard Python...
Python provides two very important features to handle any unexpected error in your Python programs and to add debugging... 04 Mar Python – Exceptions Handling | Python | 0 Python provides two very important features to handle any unexpected error in your Python programs and to add debugging...
The Common Gateway Interface, or CGI, is a set of standards that define how information is exchanged between the... 04 Mar Python – CGI Programming | Python | 0 The Common Gateway Interface, or CGI, is a set of standards that define how information is exchanged between the...
A tuple is a collection of objects which ordered and immutable. Tuples are sequences, just like lists. The differences... 04 Mar Python – Tuples | Python | 0 A tuple is a collection of objects which ordered and immutable. Tuples are sequences, just like lists. The differences...
A function is a block of organized, reusable code that is used to perform a single, related action. Functions... 04 Mar Python – Functions | Python | 0 A function is a block of organized, reusable code that is used to perform a single, related action. Functions...
As your program gets longer, you may want to split it into several files for easier maintenance. You may... 04 Mar Python – Modules | Python | 0 As your program gets longer, you may want to split it into several files for easier maintenance. You may...
In general, statements are executed sequentially: The first statement in a function is executed first, followed by the second,... 04 Mar Python – Loops | Python | 0 In general, statements are executed sequentially: The first statement in a function is executed first, followed by the second,...