python入门(7)Python程序的风格 Python采用缩进方式,写出来的代码就像下面的样子: # print absolute value of an integer: a = 100 if a >= 0: print a else: print -a 以#开头的语句是注释,注释是给人看的,可以是任意内容,解释器会忽略掉注释. 其他每一行都是一个语句,当语句以冒号":"结尾时,缩进的语句视为代码块. 缩进有利有弊.好处是强迫你写出格式化的代码,但没有规定缩进是几个空格还是
Python程序里的注释是很重要的.它们可以用自然语言告诉你某段代码的功能是什么.在你想要临时移除一段代码时,你还可以用注解的方式将这段代码临时禁用.接下来的练习将让你学会注释 : # A comment, this is so you can read your program later.# Anything after the # is ignored by python.print "I could have code like this." # and the comment