Home > Article > Backend Development > What type of language does python belong to?
What type of language does python belong to?
Python is an object-oriented, interpreted, dynamically typed computer programming language
Interpreted: The program does not need to be compiled into binary code, but statements are processed one by one during execution. Compilation
Dynamic typing: During the execution of the program, the type of the variable can be changed
It is often nicknamed the glue language and can convert various modules made in other languages (especially C/ C) easily connect together.
Recommendation: "Python Tutorial"
Introduction to Python and Application Areas
Python is an interpreted scripting language. Can be applied to the following fields:
● Web and Internet development
● Scientific computing and statistics
● Artificial intelligence
● Education
● Desktop interface development
● Software development
● Back-end development
The above is the detailed content of What type of language does python belong to?. For more information, please follow other related articles on the PHP Chinese website!