Which disk should python be installed on?
Python is installed to the C drive by default. If there is not enough space on the C drive, you can put it anywhere, but there should be no spaces in the path. It is recommended to install to the D drive or E drive.
Related introduction:
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 Which disk is python installed to?. For more information, please follow other related articles on the PHP Chinese website!