
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
在学习一个新知识点的时候,我们选择用标签来记录一些内容理解贴在附近,下次翻阅回顾知识点的时候就一目了然。最近有小伙伴在使用pycharm给idle注释代码的时候遇到了困难, 注释之后并不能正常浏览,而且在代码注释上也话费了很多的时间。接下来我们就这种情况,一起来用pycharm工具寻求解决的办法。
问题:
在python的idle里面 在每一行前面加#就可以变成注释不运行 但是句子比较多的时候 一行一行的加好麻烦啊 有没有什么快捷方法一次在多行前面加#
解决:
用的pycharm,有三种注释方式:
1.用 一对""" 括起来要注释的代码块。
2.用一对'''括起来要注释的代码块。
3.选中要注释的代码,按下ctrl+/注释。
代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #!/usr/bin/python
#coding=gbk
# Filename: if.py
#----->1.用一对"""括起来要注释的代码:
" ""
number = 23
guess = int(raw_input( 'Enter an integer : ' ))
if guess == number:
print 'Congratulations, you guessed it.' # New blockstarts here
print "(but you do not win any prizes!)" # New blockends here
elif guess < number:
"" "
#----->2.用一对'''括起来要注释的代码块:
' ''
print 'No, it is a little higher than that' #Another block
# You can do whatever you want in a block ...
else :
'' '
#----->3.选中要注释的代码,按下ctrl+/注释:
# print ' No, it is a little lower than that '
# # you must have guess > number to reach here
# print ' Done'
# # This last statement is always executed, after the ifstatement is executed
|
以上就是用pycharm注释的三种办法了,初学python的小伙伴也可以每个都运行一遍,体会不同方法之间的注释操作。