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.
There are two important concepts: font family and font in application development. If you plan to change the display style of text, you should understand them. In this tutorial, we will introduce some basic feartures and knowlage on them for beginners.
Orthogonal matrix is an important matrix in linear algebra, it is also widely used in machine learning. In this tutorial, we will dicuss what it is and how to create a random orthogonal matrix with pyhton.
Pillow can convert other format images to eps image. However, we often encounter ValueError: image mode is not supported error. In this tutorial, we will introduce how to fix this error for beginners.
There are some python gui libraries for developers to choice, however, which one is the best for programmers? In this tutorial, we will discuss this topic and you can learn some tips from this post.
When we are reading other’s source codes, such as you are reading a wordpress theme codes, we have to find a file which contains a text string or function from many source code files. It is a boring thing. Is there any easy way to find these files that contains a text string. The answer is yes.
Images are often encoded to display or transfer in web development, how to encode them? In this tutorial, we will discuss how to encode an image with base64 algorithm for beginners in python.
When we are reading a text file using python, you may find this UnicodeDecodeError: UnicodeDecodeError: ‘gbk’ codec can’t decode byte 0xa2 in position 5871: illegal multibyte sequence, which can make you fail to read a file. In this tutorial, we will tell you how to fix this error.
We have updated python 3.5 to python 3.6, when installing python packages, we will find: pip install ERROR: Error checking for conflicts. In this tutorial, we will tell you how to fix this problem to make you can install a python library using pip.
After having updated python 3.5 to python 3.6 with aconda, we find this error: if you use pip install command to install python packeages, you may get error: ERROR: Error checking for conflicts. In this tutorial, we will discuss how to fix this error.
There are some ways to help us to get computer screenshot, for example, you can use python pillow library to grab a screenshot. However, in this tutorial, we will introduce a much simpler way to grab screenshot.