导语:
本文主要介绍了关于python中如何快捷添加注释的相关知识,希望可以帮到处于编程学习途中的小伙伴
本人使用的编辑器是pycharm,有三种注释方式:
1、用 一对""" 括起来要注释的代码块。
2、用一对'''括起来要注释的代码块。
3、选中要注释的代码,按下ctrl+/注释。
实例
#!/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
推荐学习《
》。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何实现python汇率换算代码09/01
- ♥ python静态方法使用注意事项12/08
- ♥ python迭代器和生成器有什么区别08/17
- ♥ python如何声明函数09/22
- ♥ 有哪些类型的 Python 解释器?10/27
- ♥ Python脚本绘制验证码11/23
内容反馈