运算符(operator)也被称为操作符,是用于实现赋值、比较和执行算数运算等功能的符号。本文主要介绍Python 成员运算符(操作符)。

Python 常用术语

1、Python 成员运算符

成员运算符用于测试对象中是否存在序列:

运算符

描述

示例

in

如果对象中存在具有指定值的序列,则返回True

y in x

not in

如果对象中不存在具有指定值的序列,则返回True

x not in y

#!/usr/bin/python# -*- coding: UTF-8 -*-
 
a = 10
b = 20
list = [1, 2, 3, 4, 5 ];
 
if ( a in list ):
   print"变量 a 在给定的列表中 list 中"else:
   print"变量 a 不在给定的列表中 list 中"if ( b notin list ):
   print"变量 b 不在给定的列表中 list 中"else:
   print"变量 b 在给定的列表中 list 中"# 修改变量 a 的值
a = 2if ( a in list ):
   print"变量 a 在给定的列表中 list 中"else:
   print"变量 a 不在给定的列表中 list 中"

相关文档

Python 运算符教程

Python 运算符(操作符)

Python 算术运算符

Python 赋值运算符

Python 比较运算符

Python 逻辑运算符

Python 身份运算符

Python 成员运算符

Python 按位运算符

Python 常用术语

推荐文档