python特殊的缩进和语法:
python语言的语法中使用特殊的缩进作为区分,缩进有严格要求:4个空格
python的if条件判断:
if 语句
if expression: //必须有冒号
statement(s) //相对于if缩进4个空格
具体示例:
①
#!/usr/bin/python
#coding=utf-8
if 1: //在python中默认1为真true,0为false。
print "hello python" //此处判断 当为真的时候输出“hello python”
else:
print "hello linux" //否则就输出“hell linux”
②
#!/usr/bin/python
#coding=utf-8
a = ('b',11,2)
if 'b' in a: //包含关系,判断‘b’是否在 a 中存在
print "hello python"
else:
print "hello linux"
③
#!/usr/bin/python
#coding=utf-8
if not 1 > 2: //使用not取反,进行判断,判断结果应为真
print "hello pyt