python的三目运算符和not in运算符使用示例
作者:zxhpj 时间:2021-07-18 23:36:35
三目运算符也就是三元运算符
一些语言(如Java)的三元表达式形如:
判定条件?为真时的结果:为假时的结果
result=x if x
Python的三元表达式有如下几种书写方法:
if __name__ == '__main__':
a = ''
b = 'True'
c = 'False'
#方法一:为真时的结果 if 判定条件 else 为假时的结果
d = b if a else c
print('方法一输出结果:' + d)
#方法二:判定条件 and 为真时的结果 or 为假时的结果
d = a and b or c
print('方法二输出结果:' + d)
#以上两种方法方法等同于if ... else ...
if a:
d = b
else:
d = c
print('if语句的输出结果:' + d)
输出结果:
说明:
判断条件:a为空串,所以判断条件为假
当判断条件为真时的结果:d = b
当判断条件为假时的结果:d = c
x = [x for x in range(1,10)]
print(x)
y =[]
result = True if 12 not in x else False # this is the best way
print(result)
result = True if not 12 in x else False # this way just like as " (not 12) in x"
print(result)
print(x is y)
print(x is not y) # this is the best way
print(not x is y) # this way just like as " (not x ) is y" ,so upper is the best way
result = 2 if 1 < 2 else 5 if 4 > 5 else 6 # just as 1 > 2 ? 2 : 4 > 5 ? 5 : 6
print(result)
python中的not具体使用及意思
name=''
while not name:
name=raw_input(u'请输入姓名:')
print name
python中的not具体表示是什么:
在python中not是逻辑判断词,用于布尔型True和False,not True为False,not False为True,以下是几个常用的not的用法:
(1) not与逻辑判断句if连用,代表not后面的表达式为False的时候,执行冒号后面的语句。比如:
a = False
if not a: (这里因为a是False,所以not a就是True)
print "hello"
这里就能够输出结果hello
(2) 判断元素是否在列表或者字典中,if a not in b,a是元素,b是列表或字典,这句话的意思是如果a不在列表b中,那么就执行冒号后面的语句,比如:
a = 5
b = [1, 2, 3]
if a not in b:
print "hello"
这里也能够输出结果hello
not x 意思相当于 if x is false, then True, else False
代码中经常会有变量是否为None的判断,有三种主要的写法:
第一种是`if x is None`;
第二种是 `if not x:`;
第三种是`if not x is None`(这句这样理解更清晰`if not (x is None)`) 。
如果你觉得这样写没啥区别,那么你可就要小心了,这里面有一个坑。先来看一下代码:
>>> x = 1
>>> not x
False
>>> x = [1]
>>> not x
False
>>> x = 0
>>> not x
True
>>> x = [0] # You don't want to fall in this one.
>>> not x
False
更多内容可以参考这篇文章:https://www.jb51.net/article/93165.htm
标签:python,运算符
0
投稿
猜你喜欢
深入理解Python虚拟机中字节(bytes)的实现原理及源码剖析
2021-12-20 22:51:28
Python中文分词库jieba(结巴分词)详细使用介绍
2023-03-17 10:31:35
ant design vue 图片预览组件自定义样式
2023-03-14 13:11:13
PHP图片上传代码
2024-05-05 09:17:26
Python实现猜年龄游戏代码实例
2021-01-17 09:53:04
python实现抠图给证件照换背景源码
2022-06-21 04:39:38
python3中join和格式化的用法小结
2022-03-02 01:45:22
如何使用表格来储存数据库的记录?
2010-05-16 15:14:00
Python 查找list中的某个元素的所有的下标方法
2022-10-15 21:48:16
Oracle 日期的一些简单使用
2009-08-05 20:42:00
原生javascript实现的分页插件pagenav
2024-06-14 23:55:33
Python3之字节串bytes与字节数组bytearray的使用详解
2021-07-15 21:37:00
JS 循环li添加点击事件 (闭包的应用)
2024-04-10 10:48:45
Django unittest 设置跳过某些case的方法
2022-02-28 21:46:13
python利用faker库批量生成测试数据
2021-04-16 10:34:42
js与jquery获取父元素,删除子元素的两种不同方法
2023-10-07 04:08:00
对象无length属性时IE6/IE7中无法将其转换成伪数组(ArrayLike)
2024-04-17 09:49:44
python ipset管理 增删白名单的方法
2021-02-10 17:38:19
Python编程中字符串和列表的基本知识讲解
2022-02-19 16:39:25
python顺序的读取文件夹下名称有序的文件方法
2021-03-10 08:23:37