python字符串相等
时间: 2023-08-27 21:03:35 浏览: 102
Python判断中文字符串是否相等的实例
5星 · 资源好评率100%
在Python中,可以使用`==`运算符来比较两个字符串是否相等。例如:
```python
str1 = "Hello"
str2 = "World"
if str1 == str2:
print("Strings are equal")
else:
print("Strings are not equal")
```
输出结果将是 "Strings are not equal",因为 "Hello" 和 "World" 这两个字符串不相等。
阅读全文