Home > Article > Backend Development > Python multi-line comment shortcut keys
#When writing Python program code, sometimes it is necessary to comment out part of the code. If we comment out line by line, it is obviously very troublesome and not convenient enough. So we want to quickly comment out multi-line code programs. Is there any shortcut key to achieve multi-line comments?
Of course there is, and there are three ways to achieve it.
1. We can achieve this through the shortcut key: Ctr /
.
Note: Before operating this shortcut key, we need to first select and prepare the code to be commented!
Single-line and multi-line comments are the same.
2. Single-line comments: shift
# (Enter at the front of the code, unselected code to comment)
Multi-line comments: Same as single-line Enter shift
# in front of each line. 3. Enter ''' '''
or """ """
to comment The code is inserted in the middle
Related recommendations: "Python Tutorial"
This article is an introduction to the shortcut keys for python multi-line comments. It is simple and easy to understand. I hope it will be useful to Friends in need help!
The above is the detailed content of Python multi-line comment shortcut keys. For more information, please follow other related articles on the PHP Chinese website!