Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does Python VIM comment out the code

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article shows you how Python VIM comments out the code, the content is concise and easy to understand, can definitely brighten your eyes, through the detailed introduction of this article, I hope you can get something.

Before we introduce you to Python VIM commenting out the code, let's introduce VIM! It has some functions such as efficient correlation of your rate of movement and high efficiency of your output.

How to comment out an entire piece of code in VIM:

For example, to comment on the following three lines of Python code:

Def say_hello (): print 'hello worldview' Return None

1, Ctrl + V enters the block operation mode of VIM.

2, use j, k keys to move up and down, select these three rows, you need to make sure that the first column of each row is included in the selected block.

3, type I (uppercase I), which is inserted at the beginning of the line. Enter the comment character'# 'for Python.

4, press ESC key.

At this point, you will find that the'#'is inserted in the first column of each row. This is an example of the code where Python VIM comments out the relevant steps of the code.

# def say_hello (): # print 'hello worldview' # return None Mission completed.

The above is how Python VIM comments out the code. Have you learned any knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report