码迷,mamicode.com
首页 > 编程语言 > 详细

Python学习-21.Python的代码注释

时间:2014-09-28 03:05:00      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   sp   div   2014   on   

在Python中有两种注释,一种是普通注释,另一种是文档注释。

普通注释是使用#开头

1 print(output something) # here is comment

而Python中多行注释也是使用#

1 # comment 1
2 # comment 2
3 # comment 3

而文档注释则是使用英文的三个单引号

1 def Print(msg):
2     ‘‘‘输出字符串
3     msg: 字符串内容
4     ‘‘‘          
5     print(msg)

而在我们使用这个Print函数的时候VS的智能提示也会显示出文档注释

bubuko.com,布布扣

Python学习-21.Python的代码注释

标签:style   blog   http   color   使用   sp   div   2014   on   

原文地址:http://www.cnblogs.com/h82258652/p/3997562.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!