您的位置:首页 > 编程语言 > Python开发

Python学习笔记三:逻辑操作符

2010-03-09 08:00 441 查看
Python的逻辑操作有三种:and、or、not。分别对应与、或、非。

举例:

Python的逻辑操作有三种:and、or、not。分别对应与、或、非。
举例:

#coding:utf-8
test1 = 12
test2 = 0
print (test1 > test2) and (test1 > 14)  #result = False
print (test1 < test2) or (test1 > -1)   #result = True
print (not test1)                       #result = False
print (not test2)                       #result = True


严格的说,逻辑操作符的操作数应该为布尔表达式。但Python对此处理的比较灵活。
即使操作数是数字,解释器也把他们当成“表达式”。
非0的数字的布尔值为1,0的布尔值为0.

举例:

#coding:utf-8
test1 = 12
test2 = 0
print (test1 and test2)  #result = 0
print (test1 or test2)   #result = 12
print (not test1)        #result = Flase
print (not test2)        #reslut = True


在Python中,空字符串为假,非空字符串为真。非零的数为真。
数字和字符串之间、字符串之间的逻辑操作规律是:
对于and操作符:
只要左边的表达式为真,整个表达式返回的值是右边表达式的值,否则,返回左边表达式的值
对于or操作符:
只要两边的表达式为真,整个表达式的结果是左边表达式的值。
如果是一真一假,返回真值表达式的值
如果两个都是假,比如空值和0,返回的是右边的值。(空值或0)

举例:

#coding:utf-8
test1 = 12
test2 = 0
test3 = ''
test4 = "First"
print test1 and test3   #result = ''
print test3 and test1   #result = ''
print test1 and test4   #result = "First"
print test4 and test1   #result = 12
print test1 or test2    #result = 12
print test1 or test3    #result = 12
print test3 or test4    #result = "First"
print test2 or test4    #result = "First"
print test1 or test4    #result = 12
print test4 or test1    #result = "First"
print test2 or test3    #result = ''
print test3 or test2    #result = 0


{网购拿返利,购物新选择}[/b][/b]
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: