python 两个字符串比较是否相同
时间: 2023-07-26 15:10:39 浏览: 78
使用python语言,比较两个字符串是否相同的实例
在 Python 中,可以使用 `==` 运算符来比较两个字符串是否相同。例如:
```python
s1 = "hello"
s2 = "world"
if s1 == s2:
print("The strings are equal")
else:
print("The strings are not equal")
```
如果 `s1` 和 `s2` 字符串相同,则输出 `The strings are equal`,否则输出 `The strings are not equal`。
阅读全文