Home >Backend Development >Python Tutorial >如何快速地注释Python代码?

如何快速地注释Python代码?

WBOY
WBOYOriginal
2016-06-06 16:24:231732browse

在python的idle里面 在每一行前面加#就可以变成注释不运行 但是句子比较多的时候 一行一行的加好麻烦啊 有没有什么快捷方法一次在多行前面加#

回复内容:

用3个单引号, 包住想注释的内容再加上后3个单引号:

类似:
'''
print hohohoho~ happy new year~
''' 使用Eclipse + PyDev的话,选中要注释的代码,按住 "Ctr+/" 可以快速注释,再次按下,可以取消注释。 ""
"" Alt+3、Alt+4 加注释、取消注释 你把需要注释的行选上,再按ctrl+/ 有没有代码终止注释,类似于perl中的__END__,告诉编译器从这里开始下面都不是代码了 用
'''
'''
啦 Vim 块操作。五秒搞定。 在 vi 或vim打开的界面中 :

单行注释 ,在代码的最前面加 “#”即可;
多行注释,在开始位置和末尾位置用连续的3个单引号或双引号都可以。 没有任何配置的Vim就能完成你的需求.
知乎不会上传gif. 先贴个外链把Vim - 路过图床
操作分别是
1.Ctrl + v , 选中注释行
2.shift + i, 进入insert 模式
3. 输入#
4ESC 退出 insert 模式
多行注释完成
解除多行注释
1.Ctrl + v , 选中注释行
2.x
完成

有时间再介绍下目前正在用的 一款超级棒的vim注释插件
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