python 三目运算

Python代码     收藏代码
  1. >>> a = 'abc'  
  2. >>> b = 'efg'  
  3. >>> 1==0 and a or b  
  4. 'efg'  
  5. >>> 1>2 and a or b  
  6. 'efg'  
  7. >>> 1<2 and a or b  
  8. 'abc'  

 在如: a = '' 的话

 

Python代码     收藏代码
  1. >>> a = ''  
  2. >>> 1<2 and a or b  
  3. 'efg'  
  4. >>> 1>2 and a or b  
  5. 'efg'  

 结果与我们要的不符.这个东西具体可以参考 dive into python  http://www.woodpecker.org.cn/diveintopython/

 因为,在 and or运算中 空字符串 ‘’,数字0,空列表[],空字典{},空(),None,在逻辑运算中都被当作假来处理

解决办法:

Python代码     收藏代码
  1. >>> (1<2 and [a] or [b])[0]  
  2. ''  
  3. >>> (1>2 and [a] or [b])[0]  
  4. 'efg'  

 这些基础还得多看看python语法

你可能感兴趣的:(python)