注释
注释就相当于我们在看书时, 在页面的边上写的笔记一样,起到提示、方便以后理解的作用。
但是程序注使影响程序的执行。程序执行时,所有的注释均会被忽略。
Python中,注释有两种方式:单行注释 和 多行注释
单行注释:
英文#
red_ball = [] # 存放红球
blue_ball = [] # 存放蓝球
多行注释:”“”
三个英文 双引号 “”“注释的部分”“”
"""
Create exception subclass. Used by ModelBase below.
If 'attached_to' is supplied, the exception will be created in a way that
allows it to be pickled, assuming the returned exception class will be added
as an attribute to the 'attached_to' class.
"""
代码注释的原则
不用给全部代码加注释,只需要在自己觉得重要或不好理解的部分加注释即可
注释可以用中文或英文,但绝对不要拼音噢
注释不光要给自己看,还要给别人看,所以请认真写