标签:style blog http color 使用 sp strong on div
一、语法
"Hello,world"开始看吧,我们学的很多语言都是从helloworld开始的,为什么呢,谁来回答一下。
>>> 1 + 1 2 >>> print ‘Hello,world!‘ Hello,world! >>> x = 1 >>> y =2 >>> x + y 3
1、注释
和很多Unix脚本类似,Python的注释语句从#字符开始,如:
# print Ethon 输出
注意:Python的#字符注释只能实现单行注释,
注释多行代码,可以用三重引号(包含单引号又包含双引号)
‘‘‘print Ethon return Ethon‘‘‘
2、换行(\n)
3、反斜线(\)继续上一行
也就是对一行一个语句的隔行,针对一些过长的语句可使用反斜杠\来分解成多行,如:
标签:style blog http color 使用 sp strong on div
原文地址:http://www.cnblogs.com/wakey/p/4136227.html