Python is an interpreted, high-level, general-purpose programming language. Created by Guido van Rossum and first released in 1991.
In this page, we write some tutorials and examples on how to use python to programming, you can build some excellent applications by following our tutorials and examples.
Python exception handling is one of most important part of python tutorial, in this tutorial, we will introduce some basic usage of python exception for beginners. You can learn how to handle python exception.
Is there any way to disable and enable wifi connection on win 10 automatically? The answer is yes. In this tutorial, we will use python to disable and enable wifi connection.
QR code is widely used on internet, python provides some libraries to create qr code. In this tutorial, we will introduce to how to create qr code with image backgourd using myqr library.
In python we can create our custom exception and raise it. In this tutorial, we will introduce to you on how to create our custom exception and how to raise it.
Assert statements are convenient ways to insert debugging assertions in python application. In this tutorial, we will introduce how to understand and use it for python beginners.
In this tutorial, we will introduce how to extract the longest common substring from two python strings, you can learn and how to do by following our tutorial.
In python, we can use logging library to save python message into a file. However, there is an problem, we can save the python message into a file, but we can not see them on our console.
In python 3, if you use xrange() function, you may find this error: NameError: name ‘xrange’ is not defined. In this tutorial, we will introduce how to fix this error in python 3.