Python比较运算符

简介: 【6月更文挑战第27天】Python比较运算符。

在了解了比较运算符之后编写实例进行验证,在basis目录下新建文件,命名为comparison.py,学习Python比较运算符的操作,在PyCharm中输入代码。
operand_a = 5
operand_b = 5
operand_c = 2

等于号

print("{} == {} ? [{}]".format(operand_a, operand_b, operand_a == operand_b))
print("{} == {} ? [{}]".format(operand_a, operand_c, operand_a == operand_c))

大于号

print("{} > {} ? [{}]".format(operand_a, operand_b, operand_a > operand_b))
print("{} > {} ? [{}]".format(operand_a, operand_c, operand_a > operand_c))

小于号

print("{} < {} ? [{}]".format(operand_a, operand_b, operand_a < operand_b))
print("{} < {} ? [{}]".format(operand_c, operand_a, operand_c < operand_a))

大于等于号

print("{} >= {} ? [{}]".format(operand_a, operand_b, operand_a >= operand_b))
print("{} >= {} ? [{}]".format(operand_c, operand_a, operand_c >= operand_a))

小于等于号

print("{} <= {} ? [{}]".format(operand_a, operand_b, operand_a <= operand_b))
print("{} <= {} ? [{}]".format(operand_a, operand_c, operand_a <= operand_c))

不等于号

print("{} != {} ? [{}]".format(operand_a, operand_b, operand_a != operand_b))
print("{} != {} ? [{}]".format(operand_a, operand_c, operand_a != operand_c))

相关文章
|
1月前
|
Python
Python运算符优先级
Python运算符优先级。
23 3
|
1月前
|
Python
Python成员运算符
Python成员运算符
29 2
|
1月前
|
Python
Python身份运算符
Python身份运算符。
24 1
|
1月前
|
Python
Python赋值运算符
Python赋值运算符。
25 2
|
1月前
|
Python
Python比较运算符
Python比较运算符。
28 2
|
2月前
|
Python
【10月更文挑战第7天】「Mac上学Python 14」基础篇8 - 运算符详解
本篇将详细介绍Python中的运算符,包括数学运算、关系运算、逻辑运算、赋值运算和成员运算等内容。同时会说明运算符的优先级和运算顺序,帮助用户理解和掌握Python中的运算符使用规则。
43 3
【10月更文挑战第7天】「Mac上学Python 14」基础篇8 - 运算符详解
|
2月前
|
自然语言处理 Python
【python从入门到精通】-- 第三战:输入输出 运算符
【python从入门到精通】-- 第三战:输入输出 运算符
76 0
【python从入门到精通】-- 第三战:输入输出 运算符
|
2月前
|
存储 Java 编译器
Python学习三:学习python的 变量命名规则,算数、比较、逻辑、赋值运算符,输入与输出。
这篇文章是关于Python编程语言中变量命名规则、基本数据类型、算数运算符、比较运算符、逻辑运算符、赋值运算符以及格式化输出与输入的详细教程。
25 0
Python学习三:学习python的 变量命名规则,算数、比较、逻辑、赋值运算符,输入与输出。
|
2月前
|
Python
Python操作:字符串--列表--元组--字典--运算符 (一)
Python操作:字符串--列表--元组--字典--运算符 (一)
23 0
|
2月前
|
Python
Python操作:字符串--列表--元组--字典--运算符 (二)
Python操作:字符串--列表--元组--字典--运算符 (二)
23 0