Home  >  Article  >  Backend Development  >  Python multi-line comment shortcut keys

Python multi-line comment shortcut keys

藏色散人
藏色散人Original
2019-04-08 15:47:3635048browse


#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?

Python multi-line comment shortcut keys

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn