当前位置:首页 > 行业动态 > 正文

python中不相等符号

在Python中,不相等符号是 !=。它用于比较两个值是否不相等,如果相等则返回False,否则返回True。

在Python中,不相等符号是"!=",它用于比较两个值是否不相等,如果左边的值不等于右边的值,它将返回True,否则返回False。

python中不相等符号  第1张

以下是一些使用"!="进行比较的示例:

1、数字比较:

a = 5
b = 3
result = a != b
print(result)  # 输出 True,因为 5 不等于 3

2、字符串比较:

str1 = "Hello"
str2 = "World"
result = str1 != str2
print(result)  # 输出 True,因为 "Hello" 不等于 "World"

3、列表比较:

list1 = [1, 2, 3]
list2 = [4, 5, 6]
result = list1 != list2
print(result)  # 输出 True,因为 list1 不等于 list2

4、字典比较:

dict1 = {"name": "John", "age": 25}
dict2 = {"name": "Jane", "age": 30}
result = dict1 != dict2
print(result)  # 输出 True,因为 dict1 不等于 dict2

归纳起来,"!="用于比较两个值是否不相等,可以应用于数字、字符串、列表和字典等各种数据类型。

0