Home > Article > Development Tools > How to write python with sublime
How to write Python in the Sublime Text editor? Install Python. Create a Python file (.py). Write Python code. Run the code using the console or external terminal. Enhance your development experience with Sublime Text features (code snippets, autocomplete, indentation, syntax checking, debugging).
Writing Python using Sublime Text Editor
Sublime Text is a popular text editor that can be used for Write in various programming languages, including Python.
Installing Python
Before using Sublime Text to write Python, you need to install Python on your computer. Visit the official Python website (https://www.python.org/) and download the installer for your operating system.
Create Python File
In Sublime Text, create a new file and save it as a Python file with a .py
extension, for example hello.py
.
Writing Python Code
Write your Python code in a Python file. Sublime Text provides features such as syntax highlighting, auto-completion, and indentation to help you write code.
Running Python Code
You can run Python code in Sublime Text using one of the following methods:
Ctrl
B
(Windows) or Cmd
B
(Mac) to run the code in the Sublime Text integrated console. Ctrl
Alt
B
(Windows) or Cmd
Option
B
(Mac ) to run code in an external terminal. Using Sublime Text functions
In addition to basic code editing functions, Sublime Text also provides a variety of functions to enhance the Python development experience, such as:
Tab
key. The above is the detailed content of How to write python with sublime. For more information, please follow other related articles on the PHP Chinese website!