码迷,mamicode.com
首页 > 编程语言 > 详细

python中的比较

时间:2016-01-27 14:37:55      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

a>b

a<b

a>=b

a<=b

a!=b(a<>b)

a==b

x in b (b为序列)

x not in b (b为序列)

x is b (x 和b为一个对象)

python中可以用a<x<b来比较,java中不可以,python中同样可以使用a<x and b > x

python 中的range()

range类似于切片,包含下限不包含上线,range(10) :  [0,1,2,3,4,5,6,7,8,9],range(1,10)[1,2,3,4,5,6,7,8,9]

 

python中的比较

标签:

原文地址:http://www.cnblogs.com/mggwct/p/5163027.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!