Python is a high-level scripting language that combines interpretation, compilation, interactivity and object-oriented.
Python is designed to be highly readable. Compared with other languages, it often uses English keywords and some punctuation marks in other languages. It has a more distinctive grammatical structure than other languages.
● Python is an interpreted language: This means that there is no compilation link in the development process. Similar to PHP and Perl languages.
● Python is an interactive language: This means that you can execute code directly from a Python prompt >>> .
● Python is an object-oriented language: This means that Python supports object-oriented style or programming techniques in which code is encapsulated in objects.
● Python is a beginner’s language: Python is a great language for beginning programmers, supporting a wide range of application development, from simple word processing to WWW browsers to games.
Related recommendations: "Python Tutorial"
The above is the detailed content of What programming language is python?. For more information, please follow other related articles on the PHP Chinese website!