标签:
一、作用域
对于变量的作用域,执行声明并在内存中存在,该变量就可以在下面的代码中使用。
if 1==1: name = ‘wupeiqi‘ print name
二、三元运算
result
=
值
1
if
条件
else
值
2 如#果条件成立,值1付给result否则值2付给result
如果条件为真:result = 值1
如果条件为假:result = 值2
name = ‘sb‘ if 1==1 else ‘2b‘
input = raw_input() result = ‘2b‘ if input ==‘alex‘ else ‘haoren‘
标签:
原文地址:http://www.cnblogs.com/sundi/p/5037628.html