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

python 关系运算符

时间:2017-07-08 11:21:44      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:返回   color   style   div   结果   code   pytho   span   logs   

关系运算符包括 >   <   >=   <=   ==   != ,返回结果为一个布尔值(False / True)

In [38]: 1 > 2
Out[38]: False

In [39]: 2 < 3
Out[39]: True

In [40]: 1 >= 1
Out[40]: True

In [41]: 2 <= 2
Out[41]: True

In [42]: 2 == 2
Out[42]: True

In [43]: 1 != 2
Out[43]: True

 

 

 

 

    

python 关系运算符

标签:返回   color   style   div   结果   code   pytho   span   logs   

原文地址:http://www.cnblogs.com/pzk7788/p/7135850.html

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