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 yield and return statement are common used in python function, both of them can control the execution process of python function, in this tutorial, we will discuss some differences between them.
Extracting all urls from a python string is often used in nlp filed, which can help us to crawl web pages easily. In this tutorial, we will introduce how to extract urls from a python string.
Padding a python string up to a fixed length is a very useful programming tip, which often can simplify the processing of strings in python. In this tutorial, we will introduce how to pad python string.
In this tutorial, we write an example to help python beginners to understand python yield statement, which is common used in python application, you can learn how to use this statement correctly by following our tutorial.
In this tutorial, we introduce how to use python logging library to save python message into a log file, which is very useful for us when training our model. You can learn how to do by referring our tutorial.
In this tutorial, we discuss how to iterate through a python dictionary, we can iterate through keys and values, we also can sort it. you can learn how to do by following our tutorial.
In this tutorial, we introduce how to check a string contains a substring or not, the main way is to use for in operation in python, this function is widely used, you can learn how to do by referring our example.
In this tutorial, we write an example to introduce how to call other exe files in python, you can use os.popen() function to do it. The detail you can refer our tutorial.
In this tutorial, we introduce how to bind ctrl+key in python tkinter, the key way is to use Control-Key-key, you can learn how to do by referring our tutorial.
In this tutorial, we introduce how to install .whl file in python. The key idea is to use pip install command. You can learn how to do by following our tutorial.