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.
When we are using python pip to install netifaces packages, we get this link error:LINK : fatal error LNK1158: cannot run ‘rc.exe’. In this tutorial, we will introduce some steps to fix it.
In this tutorial, we will introduce how to compress a pdf file in python. The best way to compress a pdf file is use other application to compress pdf file using python. For example: Use python call ghostscript.
Sometimes, we have to crawl all resources in only a site. In that situation, we will have to get domain or subdomain of this site by url. In this tutorial, we will introduce you how to do in python.
string.punctuation is a python constant, which contains some punctuations in english. In this tutorial, we will introduce it and use it to remove punctuations in a text sentence.
When you are processing images using python, you may encounter this error: module ‘scipy.misc’ has no attribute ‘imread’. In this tutorial, we will introduce you how to fix this problem.
To convert images to pdf, we can use python img2pdf or pymupdf. However, there is a problem in these methods, which is one image one pdf page. If you plan to convert all images to one page pdf, how to do?